Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/user-interaction/ranges-and-selections/test-001.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/user-interaction/ranges-and-selections/test-001.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/user-interaction/ranges-and-selections/test-001.html |
index 50fe65014a015823038c75a03b03d0ca7d4b6f5e..88c479b00c3c465d6852dd233de4bbf117b66bdb 100644 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/user-interaction/ranges-and-selections/test-001.html |
+++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/user-interaction/ranges-and-selections/test-001.html |
@@ -16,62 +16,64 @@ policies and contribution forms [3]. |
<meta name="assert" content="User Interaction: Selection, returned by the window.getSelection() method must never return a selection within a shadow tree"> |
<script src="../../../../../../resources/testharness.js"></script> |
<script src="../../../../../../resources/testharnessreport.js"></script> |
-<script src="../../testcommon.js"></script> |
+<script src="../../../../html/resources/common.js"></script> |
+<script src="../../../resources/shadow-dom-utils.js"></script> |
</head> |
<body> |
<div id="log"></div> |
<script> |
test(unit(function (ctx) { |
- var d = newRenderedHTMLDocument(ctx); |
+ var d = newRenderedHTMLDocument(ctx); |
- var host = d.createElement('div'); |
- d.body.appendChild(host); |
- var s = host.createShadowRoot(); |
+ var host = d.createElement('div'); |
+ d.body.appendChild(host); |
+ var s = host.attachShadow({mode: 'open'}); |
- var span = d.createElement('span'); |
- span.innerHTML = 'Some text'; |
- s.appendChild(span); |
+ var span = d.createElement('span'); |
+ span.innerHTML = 'Some text'; |
+ s.appendChild(span); |
- var range = d.createRange(); |
- range.setStart(span.firstChild, 0); |
- range.setEnd(span.firstChild, 3); |
+ var range = d.createRange(); |
+ range.setStart(span.firstChild, 0); |
+ range.setEnd(span.firstChild, 3); |
- var selection = window.getSelection(); |
+ var selection = window.getSelection(); |
selection.removeAllRanges(); |
selection.addRange(range); |
var sl = window.getSelection(); |
assert_equals(sl.toString(), '', 'window.getSelection() method must never return a selection ' + |
- 'within a shadow tree'); |
+ 'within a shadow tree'); |
}), 'A_07_07_01_T01'); |
// test distributed nodes |
test(unit(function (ctx) { |
- var d = newRenderedHTMLDocument(ctx); |
+ var d = newRenderedHTMLDocument(ctx); |
- var host = d.createElement('div'); |
- d.body.appendChild(host); |
+ var host = d.createElement('div'); |
+ d.body.appendChild(host); |
- var span = d.createElement('span'); |
- span.innerHTML = 'Some text'; |
- host.appendChild(span); |
+ var span = d.createElement('span'); |
+ span.innerHTML = 'Some text'; |
+ span.setAttribute('slot', 'span'); |
+ host.appendChild(span); |
- var s = host.createShadowRoot(); |
- s.innerHTML = '<content select="span"></content>'; |
+ var s = host.attachShadow({mode: 'open'}); |
+ s.innerHTML = '<slot name="span"></slot>'; |
- var range = d.createRange(); |
- range.setStart(span.firstChild, 0); |
- range.setEnd(span.firstChild, 3); |
+ var range = d.createRange(); |
+ range.setStart(span.firstChild, 0); |
+ range.setEnd(span.firstChild, 3); |
- var selection = window.getSelection(); |
+ var selection = window.getSelection(); |
selection.removeAllRanges(); |
selection.addRange(range); |
var sl = window.getSelection(); |
assert_equals(sl.toString(), '', 'window.getSelection() method must never return a selection ' + |
- 'within a shadow tree'); |
+ 'within a shadow tree'); |
}), 'A_07_07_01_T02'); |
</script> |