| Index: third_party/WebCore/html/DOMTokenList.idl
|
| diff --git a/third_party/WebCore/html/DOMTokenList.idl b/third_party/WebCore/html/DOMTokenList.idl
|
| index cf57e1aeef96e2967500ee17e50f42fd089c672b..85ef1092c71a11932ad0e7a56ca43a555abd08aa 100644
|
| --- a/third_party/WebCore/html/DOMTokenList.idl
|
| +++ b/third_party/WebCore/html/DOMTokenList.idl
|
| @@ -31,8 +31,8 @@ module core {
|
| readonly attribute unsigned long length;
|
| [TreatReturnedNullStringAs=Null] DOMString item(in unsigned long index);
|
| boolean contains(in DOMString token) raises(DOMException);
|
| - void add(in DOMString token) raises(DOMException);
|
| - void remove(in DOMString token) raises(DOMException);
|
| + void add(in DOMString... tokens) raises(DOMException);
|
| + void remove(in DOMString... tokens) raises(DOMException);
|
| boolean toggle(in DOMString token) raises(DOMException);
|
|
|
| #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
|
|
|