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

Unified Diff: third_party/WebKit/LayoutTests/custom-elements/spec/adopt-node.html

Issue 2170383002: CustomElements: adopt node (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge conflict resolution Created 4 years, 4 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 | « no previous file | third_party/WebKit/LayoutTests/custom-elements/spec/resources/custom-elements-helpers.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/custom-elements/spec/adopt-node.html
diff --git a/third_party/WebKit/LayoutTests/custom-elements/spec/adopt-node.html b/third_party/WebKit/LayoutTests/custom-elements/spec/adopt-node.html
new file mode 100644
index 0000000000000000000000000000000000000000..4ef1a138d1a401b35d5f9f768799d23848f05f62
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/custom-elements/spec/adopt-node.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<title>Custom Elements: adopt node</title>
+<link rel="help" href="https://dom.spec.whatwg.org/#concept-node-adopt">
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script src="resources/custom-elements-helpers.js"></script>
+<body>
+<script>
+'use strict'
+
+// 3.2 For each inclusiveDescendant in node’s shadow-including inclusive descendants that is a custom
+// element, enqueue a custom element callback reaction with inclusiveDescendant,
+// callback name "adoptedCallback", and an empty argument list.
+promise_test((t) => {
+ return Promise.all([
+ create_window_in_test(t),
+ create_window_in_test(t)])
+ .then(([w1, w2]) => {
+ let invocations = [];
+ class X extends w1.HTMLElement {
+ adoptedCallback() { invocations.push(['adopted', this, []]); }
+ }
+ w1.customElements.define('a-a', X);
+ let a = w1.document.createElement('a-a');
+ w2.document.adoptNode(a);
+ assert_array_equals_callback_invocations(invocations, [ ['adopted', a, []] ]);
+ });
+}, 'adopting a custom element to the different document should enqueue an adoptedCallback reaction');
+</script>
+</body>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/custom-elements/spec/resources/custom-elements-helpers.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698