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

Unified Diff: sky/engine/core/dom/Node.idl

Issue 922893002: Merge the Sky Engine changes from the SkyDart branch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months 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 | « sky/engine/core/dom/Node.cpp ('k') | sky/engine/core/dom/NodeList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/Node.idl
diff --git a/sky/engine/core/dom/Node.idl b/sky/engine/core/dom/Node.idl
index 2fddd0390ddfc5c03b73ef65fe19262c88fe3dad..e90583dafa8e496784d7687964458feb89a69ee8 100644
--- a/sky/engine/core/dom/Node.idl
+++ b/sky/engine/core/dom/Node.idl
@@ -19,24 +19,23 @@
*/
[
- Custom=Wrap,
DependentLifetime,
] interface Node : EventTarget {
- [PerWorldBindings] readonly attribute Node parentNode;
- [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;
+ readonly attribute Node parentNode;
+ readonly attribute Node firstChild;
+ readonly attribute Node lastChild;
+ readonly attribute Node previousSibling;
+ readonly attribute Node nextSibling;
+ readonly attribute Document ownerDocument;
// TODO(esprehn): This should return TreeScope in Sky, but we don't have
// a TreeScope type yet.
readonly attribute Node ownerScope;
- [CustomElementCallbacks, PerWorldBindings, RaisesException, TypeChecking=Interface] Node insertBefore(Node newChild, Node? refChild);
- [CustomElementCallbacks, PerWorldBindings, RaisesException, TypeChecking=Interface] Node replaceChild(Node newChild, Node oldChild);
+ [CustomElementCallbacks, RaisesException, TypeChecking=Interface] Node insertBefore(Node newChild, Node? refChild);
+ [CustomElementCallbacks, RaisesException, TypeChecking=Interface] Node replaceChild(Node newChild, Node oldChild);
[CustomElementCallbacks, RaisesException, TypeChecking=Interface] Node removeChild(Node oldChild);
- [CustomElementCallbacks, PerWorldBindings, RaisesException, TypeChecking=Interface] Node appendChild(Node newChild);
+ [CustomElementCallbacks, RaisesException, TypeChecking=Interface] Node appendChild(Node newChild);
[ImplementedAs=hasChildren] boolean hasChildNodes();
[CustomElementCallbacks] Node cloneNode(optional boolean deep);
@@ -55,5 +54,5 @@
unsigned short compareDocumentPosition(Node other);
- [PerWorldBindings] readonly attribute Element parentElement;
+ readonly attribute Element parentElement;
};
« no previous file with comments | « sky/engine/core/dom/Node.cpp ('k') | sky/engine/core/dom/NodeList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698