Implement value for DOMTokenList

This commit is contained in:
Dominik Menzi 2016-02-24 23:10:12 +01:00
parent 39502d6bed
commit b29b2d6d73
7 changed files with 44 additions and 15 deletions

View file

@ -19,5 +19,8 @@ interface DOMTokenList {
[Throws]
boolean toggle(DOMString token, optional boolean force);
[Pure]
attribute DOMString value;
stringifier;
};

View file

@ -28,7 +28,7 @@ interface Element : Node {
attribute DOMString id;
[Pure]
attribute DOMString className;
[SameObject]
[SameObject, PutForwards=value]
readonly attribute DOMTokenList classList;
[SameObject]