A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

Implementations in Web browsers: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
(first list of features known for me)
 
m (getElementsByClassName)
Line 3: Line 3:
==Web Applications 1.0==
==Web Applications 1.0==


'''canvas''' is with some limitation implemented in Firefox, Opera and Safari, with [http://excanvas.sourceforge.net/ ExplorerCanvas] can be emulated in Internet Explorer
'''[http://www.whatwg.org/specs/web-apps/current-work/#the-canvas canvas]''' is with some limitation implemented in Firefox, Opera and Safari, with [http://excanvas.sourceforge.net/ ExplorerCanvas] can be emulated in Internet Explorer


* [http://developer.mozilla.org/en/docs/Canvas_tutorial Canvas tutorial]
* [http://developer.mozilla.org/en/docs/Canvas_tutorial Canvas tutorial]
* [http://my.opera.com/WebApplications/blog/index.dml/tag/canvas Canvas in Opera]
* [http://my.opera.com/WebApplications/blog/index.dml/tag/canvas Canvas in Opera]
* Demos from ExplorerCanvas with IE emulation [http://a.met.cz/blog-root/canvas/example1.html demo 2d], [http://a.met.cz/blog-root/canvas/example2.html demo 3d], [http://a.met.cz/blog-root/canvas/example3.html demo bitmap]
* Demos from ExplorerCanvas with IE emulation [http://a.met.cz/blog-root/canvas/example1.html demo 2d], [http://a.met.cz/blog-root/canvas/example2.html demo 3d], [http://a.met.cz/blog-root/canvas/example3.html demo bitmap]
[http://www.whatwg.org/specs/web-apps/current-work/#getelementsbyclassname getElementsByClassName] is implemented in Firefox 3


==Web Forms 2.0==
==Web Forms 2.0==

Revision as of 23:19, 12 March 2007

List of known implementations of HTML 5 in web browsers (list is incomplete, feel free to extend it)

Web Applications 1.0

canvas is with some limitation implemented in Firefox, Opera and Safari, with ExplorerCanvas can be emulated in Internet Explorer

getElementsByClassName is implemented in Firefox 3

Web Forms 2.0

In Opera 9 are implemented these extensions to the input element (name - example):

  • date, datetime, datetime-local - <input type="date" name="start">
  • month, week - <input type="month" name="arrival">
  • email - <input type="email" name="addr">
  • time - <input type="time" min="09:00" max="17:00" name="mt">
  • count - <input type="number" name="people">
  • range - <input type="range" min="1" max="10" step="1" name="count">
  • url - <input type="website" name="m">
  • datalist
  • output

Web Controls 1.0

??