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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/shadow-trees/nested-shadow-trees/test-001.html

Issue 1899623002: Import latest web-platform-tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: handle new failures Created 4 years, 8 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/imported/web-platform-tests/shadow-dom/untriaged/shadow-trees/nested-shadow-trees/test-001.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/shadow-trees/nested-shadow-trees/test-001.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/shadow-trees/nested-shadow-trees/test-001.html
deleted file mode 100644
index 6e619f88370186ce9d1917fa9c738566e37e2fa1..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/shadow-trees/nested-shadow-trees/test-001.html
+++ /dev/null
@@ -1,98 +0,0 @@
-<!DOCTYPE html>
-<!--
-Distributed under both the W3C Test Suite License [1] and the W3C
-3-clause BSD License [2]. To contribute to a W3C Test Suite, see the
-policies and contribution forms [3].
-
-[1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license
-[2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license
-[3] http://www.w3.org/2004/10/27-testcases
- -->
-<html>
-<head>
-<title>Shadow DOM Test: A_04_08_01</title>
-<link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru">
-<link rel="help" href="http://www.w3.org/TR/2013/WD-shadow-dom-20130514/#nested-shadow-subtrees">
-<meta name="assert" content="Nested Shadow Subtrees:Any element in a shadow tree can be a shadow host, thus producing nested shadow trees">
-<script src="../../../../../../resources/testharness.js"></script>
-<script src="../../../../../../resources/testharnessreport.js"></script>
-<script src="../../testcommon.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-var A_04_08_01_T1 = async_test('A_04_08_01_T01');
-
-A_04_08_01_T1.step(function () {
- var iframe = document.createElement('iframe');
- iframe.src = '../../resources/bobs_page.html';
- document.body.appendChild(iframe);
-
- iframe.onload = A_04_08_01_T1.step_func(function () {
- try {
- var d = iframe.contentDocument;
- var ul = d.querySelector('ul.stories');
-
- //make a shadow subtree
- var s1 = ul.createShadowRoot();
- var subdiv1 = d.createElement('div');
- subdiv1.innerHTML = '<ul><content select=".shadow"></content></ul>' +
- '<div id="host_div">' +
- '<span id="sh_span">This span should be visible</span>' +
- '<ul id="host">' +
- '<li id="sh_li1">Shadow li 1</li>' +
- '<li id="sh_li2">Shadow li 2</li>' +
- '<li id="sh_li3" class="shadow2">Shadow li 3</li>' +
- '<li id="sh_li4">Shadow li 4</li>' +
- '<li id="sh_li5">Shadow li 5</li>' +
- '</ul>' +
- '</div>';
- s1.appendChild(subdiv1);
-
- //make nested shadow subtree
- var sh_ul = s1.querySelector('#host');
- var s2 = sh_ul.createShadowRoot();
- var subdiv2 = d.createElement('div');
- subdiv2.innerHTML = '<ul><content select=".shadow2"></content></ul>';
- s2.appendChild(subdiv2);
-
- //The order of DOM elements should be the following:
- //li4, li3 and sh_li3 visible. Other elements invisible
- assert_true(d.querySelector('#li3').offsetTop > 0,
- 'Point 1: Shadow tree should take part in the distribution');
- assert_true(d.querySelector('#li6').offsetTop > d.querySelector('#li3').offsetTop,
- 'Point 2: Shadow tree should take part in the distribution');
- assert_true(s1.querySelector('#sh_li3').offsetTop > 0,
- 'Nested shadow subtree should take part in the distribution');
-
- assert_equals(d.querySelector('#li1').offsetTop, 0,
- 'Point 3: Elements that don\'t mach insertion point criteria participate in distribution');
- assert_equals(d.querySelector('#li2').offsetTop, 0,
- 'Point 4: Elements that don\'t mach insertion point criteria participate in distribution');
- assert_equals(d.querySelector('#li4').offsetTop, 0,
- 'Point 5: Elements that don\'t mach insertion point criteria participate in distribution');
- assert_equals(d.querySelector('#li5').offsetTop, 0,
- 'Point 6: Elements that don\'t mach insertion point criteria participate in distribution');
-
- assert_equals(s1.querySelector('#sh_li1').offsetTop, 0,
- 'Point 7: Elements of the nested shadow subtree that don\'t mach insertion point criteria participate in distribution');
- assert_equals(s1.querySelector('#sh_li2').offsetTop, 0,
- 'Point 8: Elements of the nested shadow subtree that don\'t mach insertion point criteria participate in distribution');
- assert_equals(s1.querySelector('#sh_li4').offsetTop, 0,
- 'Point 9: Elements of the nested shadow subtree that don\'t mach insertion point criteria participate in distribution');
- assert_equals(s1.querySelector('#sh_li5').offsetTop, 0,
- 'Point 10: Elements of the nested shadow subtree that don\'t mach insertion point criteria participate in distribution');
-
- assert_true(s1.querySelector('#sh_span').offsetTop > 0,
- 'Shadow subtree elements that are not shadow host should take part in the distribution');
-
-
- } finally {
- iframe.parentNode.removeChild(iframe);
- }
- A_04_08_01_T1.done();
- });
-});
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698