| Index: Source/core/dom/Node.idl
|
| diff --git a/Source/core/dom/Node.idl b/Source/core/dom/Node.idl
|
| index cc89c6c7706fdb2d054da9641983fdd0b33c1c52..9c3e3a5199cb3dc3bea44241bf43b0642fbbc07d 100644
|
| --- a/Source/core/dom/Node.idl
|
| +++ b/Source/core/dom/Node.idl
|
| @@ -41,17 +41,17 @@
|
| readonly attribute unsigned short nodeType;
|
| readonly attribute DOMString nodeName;
|
|
|
| - [ExposeJSAccessors] readonly attribute DOMString? baseURI;
|
| + readonly attribute DOMString? baseURI;
|
|
|
| - [PerWorldBindings, ExposeJSAccessors] readonly attribute Document? ownerDocument;
|
| - [PerWorldBindings, ExposeJSAccessors] readonly attribute Node? parentNode;
|
| + [PerWorldBindings] readonly attribute Document? ownerDocument;
|
| + [PerWorldBindings] readonly attribute Node? parentNode;
|
| [PerWorldBindings] readonly attribute Element? parentElement;
|
| [ImplementedAs=hasChildren] boolean hasChildNodes();
|
| - [SameObject, 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;
|
| + [SameObject, 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;
|
|
|
| [CustomElementCallbacks] attribute DOMString? nodeValue;
|
| // FIXME: textContent should not have [TreatUndefinedAs=NullString].
|
|
|