Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(670)

Unified Diff: Source/core/dom/Node.idl

Issue 106903003: Revert 163043 "Move popular DOM attributes to prorotype chains" (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/1728/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/Element.idl ('k') | Source/core/dom/NodeList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Node.idl
===================================================================
--- Source/core/dom/Node.idl (revision 163279)
+++ Source/core/dom/Node.idl (working copy)
@@ -41,13 +41,13 @@
// FIXME: the spec says this can also raise on retrieval.
[TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, CustomElementCallbacks] attribute DOMString nodeValue;
- [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 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] readonly attribute Document ownerDocument;
[Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesException] Node insertBefore(Node newChild, Node refChild);
« no previous file with comments | « Source/core/dom/Element.idl ('k') | Source/core/dom/NodeList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698