vote up 0 vote down star

Where can I test HTML 5 functionality today - is there any test build of any rendering engines which would allow testing, or is it to early? I'm aware that much of the spec hasn't been finalised, but some has, and it would be good to try it out!

flag

6 Answers

vote up 5 vote down check

Ones that are built using a recent webkit build, and Presto.

Safari 3.1 for webkit
Opera for Presto.

I'm pretty sure firefox will start supporting html5 partially in 3.1

All support is extremely partial. Check here for information on what is supported.

link|flag
vote up 0 vote down

Firefox 3.1 will implement bits of the HTML5 spec, so you could start testing those bits. Of course, they may be subject to change, but it's a start. You can download alpha versions of 3.1 now.

link|flag
vote up 0 vote down

Opera also has some support.

Generally however, it is too early to test out. You'll probably have to wait a year or 2 before any browser will have enough realistic support to test against.

EDIT Wikipedia has a good article on how much of HTML 5 various layout engines have implemented. It includes specific aspects of HTML 5.

link|flag
vote up 6 vote down

http://wiki.whatwg.org/wiki/Implementations_in_Web_browsers has information maintained by the WHATWG community (and everyone who drops by and edits it).

Disclaimer: I'm a member of that community.

link|flag
vote up 1 vote down

Major browsers are providing increased support now.

http://radar.oreilly.com/2009/05/google-bets-big-on-html-5.html

link|flag
vote up 0 vote down

Seems that new browsers support most of the tags: <header>, <section> etc. For older browsers (IE, Fx2, Camino etc) then you can use this to allow styling of these tags:

document.createElement('header');

Would make these older browsers allow CSS styling of a header tag, instead of just ignoring it.

This means that you can now use the new tags without any loss of functionality, which is a good start!

link|flag
Does that actually help in Firefox 2 or old Camino? – hsivonen Jul 7 at 12:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.