This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
Per zcorpan, the "parse a MIME type" compares bytes to code points. Presumably this algorithm should be analyzing only the raw (though ASCII-like) byte stream, and so should refer to ASCII bytes (0xNN) instead of Unicode code points (U+NNNN).
Doesn't this need to be invoked from places where you have a string instead of a stream of bytes, e.g. video.canPlayType?
(In reply to Simon Pieters from comment #1) > Doesn't this need to be invoked from places where you have a string instead > of a stream of bytes, e.g. video.canPlayType? I think the jury's still out on that; is that dependent on bug 11984?
Parse a MIME type got rewritten and is now good on this front.