| Index: Source/core/dom/Element.idl
|
| diff --git a/Source/core/dom/Element.idl b/Source/core/dom/Element.idl
|
| index 4a3c23b2a395c50b98071314767ca237a21ebb2e..bfda0b66fd8bd6df47a4b78f62df7fdc420ac896 100644
|
| --- a/Source/core/dom/Element.idl
|
| +++ b/Source/core/dom/Element.idl
|
| @@ -26,8 +26,8 @@
|
|
|
| [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString tagName;
|
|
|
| - [TreatReturnedNullStringAs=Null] DOMString getAttribute(DOMString name);
|
| - [RaisesException, CustomElementCallbacks] void setAttribute(DOMString name, DOMString value);
|
| + [ImplementedAs=bindingsGetAttribute, TreatReturnedNullStringAs=Null] DOMString getAttribute(DOMString name);
|
| + [ImplementedAs=bindingsSetAttribute, RaisesException, CustomElementCallbacks] void setAttribute(DOMString name, DOMString value);
|
| [CustomElementCallbacks] void removeAttribute(DOMString name);
|
| [MeasureAs=ElementGetAttributeNode] Attr getAttributeNode([Default=Undefined] optional DOMString name); // Removed from DOM4.
|
| [RaisesException, CustomElementCallbacks, MeasureAs=ElementSetAttributeNode] Attr setAttributeNode([Default=Undefined, StrictTypeChecking] optional Attr newAttr); // Removed from DOM4.
|
|
|