Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/html-elements-in-shadow-trees/inert-html-elements/test-002.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/html-elements-in-shadow-trees/inert-html-elements/test-002.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/html-elements-in-shadow-trees/inert-html-elements/test-002.html |
index 6637bdbf1cb1a4049aa2b9fe3feddc1422df7190..9f2609c9674c9b6fd262ba1fbc6ee8218ce5bf9f 100644 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/html-elements-in-shadow-trees/inert-html-elements/test-002.html |
+++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/shadow-dom/untriaged/html-elements-in-shadow-trees/inert-html-elements/test-002.html |
@@ -16,26 +16,27 @@ policies and contribution forms [3]. |
<meta name="assert" content="HTML Elements in shadow trees: link element must behave as inert not as part of the document 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 link = d.createElement('link'); |
- link.setAttribute('rel', 'stylesheet'); |
+ var link = d.createElement('link'); |
+ link.setAttribute('rel', 'stylesheet'); |
- //create Shadow root |
- var root = d.createElement('div'); |
- d.body.appendChild(root); |
- var s = root.createShadowRoot(); |
+ //create Shadow root |
+ var root = d.createElement('div'); |
+ d.body.appendChild(root); |
+ var s = root.attachShadow({mode: 'open'}); |
- s.appendChild(link); |
+ s.appendChild(link); |
- assert_equals(d.styleSheets.length, 0, 'link element must behave as inert not as part of the document tree'); |
+ assert_equals(d.styleSheets.length, 0, 'link element must behave as inert not as part of the document tree'); |
}), 'A_08_01_02_T01'); |