RESOLVED FIXED 32536
Some Browser-hosted SunSpider files are not valid HTML5
https://bugs.webkit.org/show_bug.cgi?id=32536
Summary Some Browser-hosted SunSpider files are not valid HTML5
Maciej Stachowiak
Reported 2009-12-14 19:36:41 PST
Some Browser-hosted SunSpider files are not valid HTML5.
Attachments
Patch (3.91 KB, patch)
2009-12-14 19:47 PST, Maciej Stachowiak
darin: review+
Maciej Stachowiak
Comment 1 2009-12-14 19:47:22 PST
WebKit Review Bot
Comment 2 2009-12-14 21:12:22 PST
style-queue ran check-webkit-style on attachment 44835 [details] without any errors.
Darin Adler
Comment 3 2009-12-14 21:33:28 PST
Comment on attachment 44835 [details] Patch > +<meta charset=utf8> Wow, I have never seen that syntax before. I always did it like this: <meta http-equiv="content-type" content="text/html; charset=utf-8"> I guess a new HTML5 thing. Does WebKit respect that syntax? rs=me
Maciej Stachowiak
Comment 4 2009-12-14 22:12:38 PST
(In reply to comment #3) > (From update of attachment 44835 [details]) > > +<meta charset=utf8> > > Wow, I have never seen that syntax before. I always did it like this: > > <meta http-equiv="content-type" content="text/html; charset=utf-8"> > > I guess a new HTML5 thing. Yep, it's new in HTML5. > Does WebKit respect that syntax? Yes. All browsers support it accidentally, because sniffing for a declared charset needs to be extremely lax. In particular sometimes people drop the quotes and write this: <meta http-equiv=content-type content=text/html; charset=utf-8> Thus you have to support charset=utf-8 by itself, and since browsers support it already, HTML5 wisely decided to make the shorter version conforming.
Maciej Stachowiak
Comment 5 2009-12-14 23:07:46 PST
Note You need to log in before you can comment on or make changes to this bug.