[Element Traversal LC] Editorial: "attribute" at ECMAScript Language Binding

Dear Web API WG,

Element Traversal Spec uses "attribute" word at ECMAScript Language Biding[1].

> firstElementChild
>    This read-only attribute is of type Element.

But it is prefered to use "property" rather than "attribute" in
ECMAScript world. Other DOM Specs use "property" at ECMAScript
Language Binding (ex. DOM Level 1[2], ...).
The biding should be something like below:

firstElementChild
    This read-only property is of type Element.
...
childElementCount
    This read-only property is of type Number.


Regards

1: http://www.w3.org/TR/2008/WD-ElementTraversal-20080303/#ecmascript-bindings
2: http://www.w3.org/TR/REC-DOM-Level-1/ecma-script-language-binding.html
-- 
KUROSAWA, Takeshi - http://taken.s101.xrea.com/

Received on Wednesday, 12 March 2008 13:10:38 UTC