Reputation: 14575
I was wondering where can I find the HTML5 specs for Internet Explorer, Opera, Firefox and Google Chrome browsers?
Upvotes: 3
Views: 164
Reputation: 87533
Fresh off the presses (6 days ago as of the time of this post):
Editor's Draft 25 January 2011
http://dev.w3.org/html5/spec/Overview.html
But below is a very good resource about new features in HTML5, including what is currently supported by various browsers. However, even better than a static mapping of what's currently supported, the book includes a chapter how to detect whether a given feature is supported, so your HTML5 can work on future browsers as more HTML5 features become more widely supported:
Dive Into HTML5
Chapter 2 - Detecting HTML5 Features
Upvotes: 3
Reputation: 132254
You can use modernizr for feature detection in your clients browsers, then do what you can to patch up the user experience.
Alternatively, if all you're looking for is comparisons of different browsers, you can view their homepage in your browser of choice to see what it supports.
Upvotes: 0
Reputation: 37007
http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(HTML5)
Upvotes: 1