Index: core/dom/Node.idl |
diff --git a/core/dom/Node.idl b/core/dom/Node.idl |
index b14d4f74e3c9a304be2258d8afff60c22bb49c46..0c7c5a12526e7292b6616cc639e80f8e69260cd9 100644 |
--- a/core/dom/Node.idl |
+++ b/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] attribute DOMString nodeValue; |
+ [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, CustomElementCallbacks=Enable] 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(); |
- [DeliverCustomElementCallbacks, PerWorldBindings] |
+ [CustomElementCallbacks=Enable, PerWorldBindings] |
Node cloneNode(optional boolean deep); |
- void normalize(); |
+ [CustomElementCallbacks=Enable] void normalize(); |
// Introduced in DOM Level 2: |
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, DeliverCustomElementCallbacks] attribute DOMString textContent; |
+ [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, SetterRaisesException, CustomElementCallbacks=Enable] attribute DOMString textContent; |
boolean isSameNode([Default=Undefined] optional Node other); |
boolean isEqualNode([Default=Undefined] optional Node other); |
@@ -91,7 +91,7 @@ |
unsigned short compareDocumentPosition([Default=Undefined] optional Node other); |
// Introduced in DOM4 |
- boolean contains([Default=Undefined] optional Node other); |
+ [ImplementedAs=bindingsContains] boolean contains([Default=Undefined] optional Node other); |
// IE extensions |
[PerWorldBindings] readonly attribute Element parentElement; |