Index: Source/core/dom/Node.idl |
diff --git a/Source/core/dom/Node.idl b/Source/core/dom/Node.idl |
index 690190de1ac8829964d04c8bff0cddede4a5c15e..a495f7a59c51c6d60c0009e85903d3bdd789bf70 100644 |
--- a/Source/core/dom/Node.idl |
+++ b/Source/core/dom/Node.idl |
@@ -40,13 +40,13 @@ |
[TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, CustomElementCallbacks] attribute DOMString nodeValue; |
- [PerWorldBindings] readonly attribute unsigned short nodeType; |
- [PerWorldBindings] readonly attribute Node parentNode; |
- [PerWorldBindings] readonly attribute NodeList childNodes; |
- [PerWorldBindings] readonly attribute Node firstChild; |
- [PerWorldBindings] readonly attribute Node lastChild; |
- [PerWorldBindings] readonly attribute Node previousSibling; |
- [PerWorldBindings] readonly attribute Node nextSibling; |
+ [PerWorldBindings, ExposeJSAccessors] readonly attribute unsigned short nodeType; |
+ [PerWorldBindings, ExposeJSAccessors] readonly attribute Node parentNode; |
+ [PerWorldBindings, ExposeJSAccessors] readonly attribute NodeList childNodes; |
+ [PerWorldBindings, ExposeJSAccessors] readonly attribute Node firstChild; |
+ [PerWorldBindings, ExposeJSAccessors] readonly attribute Node lastChild; |
+ [PerWorldBindings, ExposeJSAccessors] readonly attribute Node previousSibling; |
+ [PerWorldBindings, ExposeJSAccessors] readonly attribute Node nextSibling; |
[PerWorldBindings] readonly attribute Document ownerDocument; |
[Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesException] Node insertBefore(Node newChild, Node refChild); |