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

Unified Diff: LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002.html

Issue 1236713002: Import FileAPI tests from web-platform-tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Ugh, stupid baselines Created 5 years, 5 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: LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002.html
diff --git a/LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002.html b/LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002.html
deleted file mode 100644
index d9321063bc1dd565474ceb5888932a03454ac3a5..0000000000000000000000000000000000000000
--- a/LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002.html
+++ /dev/null
@@ -1,86 +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_05_02</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/#multiple-shadow-subtrees">
-<meta name="assert" content="Hosting Multiple Shadow Subtrees:If multiple shadow insertion points exist in a shadow DOM subtree, only the first, in tree order, is recognized">
-<script src="../../../../../resources/testharness.js"></script>
-<script src="../../../../../resources/testharnessreport.js"></script>
-<script src="../../testcommon.js"></script>
-<link rel="stylesheet" href="../../../../../resources/testharness.css">
-</head>
-<body>
-<div id="log"></div>
-<script>
-var A_04_05_02_T1 = async_test('A_04_05_02_T01');
-
-A_04_05_02_T1.step(function () {
- var iframe = document.createElement('iframe');
- iframe.src = '../../resources/bobs_page.html';
- document.body.appendChild(iframe);
-
- iframe.onload = A_04_05_02_T1.step_func(function () {
- try {
- var d = iframe.contentDocument;
- var ul = d.querySelector('ul.stories');
-
- //make the oldest shadow subtree
- var s1 = ul.createShadowRoot();
- var subdiv1 = d.createElement('div');
- subdiv1.innerHTML = '<ul><content select="#li1"></content></ul>';
- s1.appendChild(subdiv1);
-
- //make an old shadow subtree
- var s2 = ul.createShadowRoot();
- var subdiv2 = d.createElement('div');
- subdiv2.innerHTML = '<ul><content select=".shadow"></content></ul>';
- s2.appendChild(subdiv2);
-
- //make the youngest shadow subtree
- var s3 = ul.createShadowRoot();
- var subdiv3 = d.createElement('div');
- subdiv3.innerHTML = '<ul><content select=".shadow2"></content></ul>';
- s3.appendChild(subdiv3);
-
- //add a shadow insertion point for the old tree
- s3.appendChild(d.createElement('shadow'));
- //add another shadow insertion point for the older tree.
- //Shouldn't match
- s3.appendChild(d.createElement('shadow'));
-
-
- //The order of DOM elements should be the following:
- //li4, li3, li6 visible. Other elements invisible
- assert_true(d.querySelector('#li4').offsetTop > 0,
- 'Only the younger tree should take part in the distribution');
- assert_true(d.querySelector('#li3').offsetTop > d.querySelector('#li4').offsetTop,
- 'Point 1: Older tree should take part in the distribution');
- assert_true(d.querySelector('#li6').offsetTop > d.querySelector('#li3').offsetTop,
- 'Point 2: Older tree should take part in the distribution');
-
- assert_equals(d.querySelector('#li1').offsetTop, 0,
- 'The oldest tree shouldn\'t take part in the distribution');
- assert_equals(d.querySelector('#li2').offsetTop, 0,
- 'Point 3: Elements that don\'t mach insertion point criteria participate in distribution');
- assert_equals(d.querySelector('#li5').offsetTop, 0,
- 'Point 4: Elements that don\'t mach insertion point criteria participate in distribution');
-
- } finally {
- iframe.parentNode.removeChild(iframe);
- }
- A_04_05_02_T1.done();
- });
-});
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698