Ahem, linebreak in changelog

This commit is contained in:
Thomas Fuchs 2007-06-17 22:28:10 +00:00
parent 03ae9dd3ee
commit a611146f61
1 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
*SVN*
* Make document.getElementsByClassName match the WHATWG Web Applications 1.0 specification which was adopted in Firefox 3
(http://www.whatwg.org/specs/web-apps/current-work/#getelementsbyclassname). It now supports multiple class names given as an array or a space-separated list in a string. The method will only return the nodes that match all the class names. In browsers that implement the method natively it will not be overwritten. Closes #8401. [Mislav Marohnić]
* Make document.getElementsByClassName match the WHATWG Web Applications 1.0 specification which was adopted in Firefox 3 (http://www.whatwg.org/specs/web-apps/current-work/#getelementsbyclassname). It now supports multiple class names given as an array or a space-separated list in a string. The method will only return the nodes that match all the class names. In browsers that implement the method natively it will not be overwritten. Closes #8401. [Mislav Marohnić]
Examples:
document.getElementsByClassName('foo bar')
document.getElementsByClassName(['foo', 'bar'])