Index: Source/core/dom/Element.idl |
diff --git a/Source/core/dom/Element.idl b/Source/core/dom/Element.idl |
index a421866233d4b3632a762cf5dede0a90cc0c88b7..a5c2787b651eea29c87e70044e6740985fed1009 100644 |
--- a/Source/core/dom/Element.idl |
+++ b/Source/core/dom/Element.idl |
@@ -27,9 +27,9 @@ interface Element : Node { |
DOMString? getAttribute(DOMString name); |
[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] optional Attr newAttr); // Removed from DOM4. |
- [RaisesException, CustomElementCallbacks, MeasureAs=ElementRemoveAttributeNode] Attr removeAttributeNode([Default=Undefined] optional Attr oldAttr); // Removed from DOM4. |
+ [MeasureAs=ElementGetAttributeNode] Attr getAttributeNode([Default=Undefined] optional DOMString name); |
+ [RaisesException, CustomElementCallbacks, MeasureAs=ElementSetAttributeNode] Attr setAttributeNode([Default=Undefined] optional Attr newAttr); |
+ [RaisesException, CustomElementCallbacks, MeasureAs=ElementRemoveAttributeNode] Attr removeAttributeNode([Default=Undefined] optional Attr oldAttr); |
HTMLCollection getElementsByTagName(DOMString name); |
[PerWorldBindings, ImplementedAs=attributesForBindings] readonly attribute NamedNodeMap attributes; |
@@ -42,7 +42,7 @@ interface Element : Node { |
[CustomElementCallbacks] void removeAttributeNS(DOMString? namespaceURI, DOMString localName); |
HTMLCollection getElementsByTagNameNS(DOMString? namespaceURI, DOMString localName); |
[MeasureAs=ElementGetAttributeNodeNS] Attr getAttributeNodeNS([Default=Undefined] optional DOMString? namespaceURI, |
- [Default=Undefined] optional DOMString localName); // Removed from DOM4. |
+ [Default=Undefined] optional DOMString localName); |
[RaisesException, CustomElementCallbacks, DeprecateAs=ElementSetAttributeNodeNS] Attr setAttributeNodeNS([Default=Undefined] optional Attr newAttr); // Removed from DOM4. |
boolean hasAttribute(DOMString name); |
boolean hasAttributeNS(DOMString? namespaceURI, DOMString localName); |