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).

Specs/todo: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
No edit summary
Line 28: Line 28:


* http://lists.w3.org/Archives/Public/public-html/2008Oct/0127.html (a description of some sections that needed editing in 2008 and how much work they would be)
* http://lists.w3.org/Archives/Public/public-html/2008Oct/0127.html (a description of some sections that needed editing in 2008 and how much work they would be)
== Other stuff ==
Some notes from the HTML5 spec about things that need doing:
* find object at (x,y) http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/elementfrompoint.asp
* find mouse position
* screen object: top left width height pixelDepth colorDepth availWidth availHeight availLeft availTop
* methods/properties for managing scrolling, especially in <textarea>, such as .scrollTop and .scrollHeight in Mozilla
* support access Array element via () instead of [] (IEism) https://bugzilla.mozilla.org/show_bug.cgi?id=289876
* Need to say that NodeList's items are enumerable, so that...  for (var x in myNodeList) { }  ...works. (ack Dethe Elza)
* a way to show icons for file types e.g. http://www.gadgetopia.com/2004/05/04/FileIconTag.html (this should probably be a function for the 'content', 'background-image' and 'list-style-image' properties in CSS)
* custom syntax highlighting in <textarea>, &lt;pre> (ack Ryan Johnson) (this would probably best be done as some sort of output filter at the CSS level, rather than anything HTML-specific. It would have to support both <textarea>, where the data isn't in the DOM proper, and &lt;pre>, where it is.)

Revision as of 13:04, 23 September 2009

There are many specifications that need editors. This page lists some of the more important ones. If you want to volunteer to edit one of these specs, contain [email protected] or post on the WHATWG mailing list or say something on the #whatwg IRC channel on Freenode.

How to edit a spec

We have some documentation on how to write a spec that could help if you want to help out.

Specs to edit

DOM

  • A rewrite of DOM2 Traversal.
  • A rewrite of DOM2 Range.
  • User Interaction Events (onclick, onkeypress, etc).
  • window.atob
  • window.btoa
  • XMLSerializer()
  • DOMParser()

CSS

There are many specifications for extending CSS that are in need of editors. The most important ones are:

  • CSS3 Flexible Box or some other UI layout model
  • CSS Animation
  • CSS Gradients
  • CSSOM

See also

Other stuff

Some notes from the HTML5 spec about things that need doing:

  • find object at (x,y) http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/elementfrompoint.asp
  • find mouse position
  • screen object: top left width height pixelDepth colorDepth availWidth availHeight availLeft availTop
  • methods/properties for managing scrolling, especially in <textarea>, such as .scrollTop and .scrollHeight in Mozilla
  • support access Array element via () instead of [] (IEism) https://bugzilla.mozilla.org/show_bug.cgi?id=289876
  • Need to say that NodeList's items are enumerable, so that... for (var x in myNodeList) { } ...works. (ack Dethe Elza)
  • a way to show icons for file types e.g. http://www.gadgetopia.com/2004/05/04/FileIconTag.html (this should probably be a function for the 'content', 'background-image' and 'list-style-image' properties in CSS)
  • custom syntax highlighting in <textarea>, <pre> (ack Ryan Johnson) (this would probably best be done as some sort of output filter at the CSS level, rather than anything HTML-specific. It would have to support both <textarea>, where the data isn't in the DOM proper, and <pre>, where it is.)