| Index: LayoutTests/fast/dom/shadow/insertion-parent-skips-ua-shadow.html
|
| diff --git a/LayoutTests/fast/dom/shadow/insertion-parent-skips-ua-shadow.html b/LayoutTests/fast/dom/shadow/insertion-parent-skips-ua-shadow.html
|
| deleted file mode 100644
|
| index 1551940719cd3fda36ce5d4da115dbd3077bfbab..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/shadow/insertion-parent-skips-ua-shadow.html
|
| +++ /dev/null
|
| @@ -1,24 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../js/resources/js-test-pre.js"></script>
|
| -
|
| -<details id="d"><div id="e"></div></details>
|
| -
|
| -<script>
|
| -description('Tests that webkitInsertionParent does not leak nodes in user agent shadow DOM');
|
| -
|
| -jsTestIsAsync = true;
|
| -
|
| -function test() {
|
| - // Look through UA shadow root => no insertion point
|
| - e = document.querySelector('#e');
|
| - shouldBeNull('e.webkitInsertionParent');
|
| -
|
| - e.parentNode.remove();
|
| -
|
| - finishJSTest();
|
| -}
|
| -window.onload = test;
|
| -
|
| -successfullyParsed = true;
|
| -</script>
|
| -<script src="../../js/resources/js-test-post.js"></script>
|
|
|