| Index: Source/core/dom/Node.idl
|
| diff --git a/Source/core/dom/Node.idl b/Source/core/dom/Node.idl
|
| index 3d774a2baded3d613789ab1a625f16d0ab0987e1..73b7f385973875ab1f9481d71fc3b03626a539fe 100644
|
| --- a/Source/core/dom/Node.idl
|
| +++ b/Source/core/dom/Node.idl
|
| @@ -39,7 +39,7 @@
|
| [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString nodeName;
|
|
|
| // FIXME: the spec says this can also raise on retrieval.
|
| - [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, CustomElementCallbacks=Enable] attribute DOMString nodeValue;
|
| + [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, CustomElementCallbacks] attribute DOMString nodeValue;
|
|
|
| [PerWorldBindings] readonly attribute unsigned short nodeType;
|
| [PerWorldBindings] readonly attribute Node parentNode;
|
| @@ -56,9 +56,9 @@
|
| [Custom, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds, RaisesException] Node appendChild(Node newChild);
|
|
|
| boolean hasChildNodes();
|
| - [CustomElementCallbacks=Enable, PerWorldBindings]
|
| + [CustomElementCallbacks, PerWorldBindings]
|
| Node cloneNode(optional boolean deep);
|
| - [CustomElementCallbacks=Enable] void normalize();
|
| + [CustomElementCallbacks] void normalize();
|
|
|
| // Introduced in DOM Level 2:
|
| [MeasureAs=NodeIsSupported] boolean isSupported([Default=Undefined] optional DOMString feature,
|
| @@ -72,7 +72,7 @@
|
| [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString baseURI;
|
|
|
| // FIXME: the spec says this can also raise on retrieval.
|
| - [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, SetterRaisesException, CustomElementCallbacks=Enable] attribute DOMString textContent;
|
| + [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, SetterRaisesException, CustomElementCallbacks] attribute DOMString textContent;
|
|
|
| [MeasureAs=NodeIsSameNode] boolean isSameNode([Default=Undefined] optional Node other); // Removed in DOM4.
|
| boolean isEqualNode([Default=Undefined] optional Node other);
|
|
|