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

Unified Diff: third_party/WebKit/LayoutTests/shadow-dom/slots-fallback-api-1.html

Issue 2053503003: Clean up layout tests in LayoutTests/shadow-dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
Index: third_party/WebKit/LayoutTests/shadow-dom/slots-fallback-api-1.html
diff --git a/third_party/WebKit/LayoutTests/shadow-dom/slots-fallback-api-1.html b/third_party/WebKit/LayoutTests/shadow-dom/slots-fallback-api-1.html
new file mode 100644
index 0000000000000000000000000000000000000000..8b53d7e87f5feea518554f9dcd1e31fc317595ae
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/shadow-dom/slots-fallback-api-1.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="resources/shadow-dom.js"></script>
+<div id="host">
+ <template data-mode="open">
+ <slot id="slot1" name="slot1">
+ <div id="fallback1"></div>
+ </slot>
+ <slot id="slot2" name="slot2">
+ <div id="fallback2"></div>
+ </slot>
+ </template>
+ <div id="child1" slot="slot1"></div>
+</div>
+<script>
+'use strict';
+
+let n = createTestTree(host);
+removeWhiteSpaceOnlyTextNodes(n.host);
+
+test(() => {
+ assert_equals(n.child1.assignedSlot, n.slot1);
+}, "assignedSlot");
+
+test(() => {
+ assert_array_equals(n.slot1.assignedNodes(), [n.child1]);
+ assert_array_equals(n.slot2.assignedNodes(), []);
+}, "assignedNodes");
+
+test(() => {
+ assert_array_equals(n.slot1.assignedNodes({ flatten: true }), [n.child1]);
+ assert_array_equals(n.slot2.assignedNodes({ flatten: true }), [n.fallback2]);
+}, "assignedNodes({ flatten: true }))");
+</script>

Powered by Google App Engine
This is Rietveld 408576698