Index: LayoutTests/fast/dom/shadow/insertion-point-resetStyleInheritance-with-pseudo-element-crash.html |
diff --git a/LayoutTests/fast/dom/shadow/insertion-point-resetStyleInheritance-with-pseudo-element-crash.html b/LayoutTests/fast/dom/shadow/insertion-point-resetStyleInheritance-with-pseudo-element-crash.html |
deleted file mode 100644 |
index a1c852b4f3c798752d11953dee6f0df6f9876f46..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/shadow/insertion-point-resetStyleInheritance-with-pseudo-element-crash.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<!doctyle html> |
-<head> |
-<style> |
-span::after { |
- -webkit-mask-box-image-source: url(does-not-exist.gif) |
-} |
-</style> |
-<script> |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
-function runTests() { |
- var host = document.getElementById("host"); |
- var shadowRoot = host.createShadowRoot(); |
- shadowRoot.innerHTML = "<content id='content'>" |
- shadowRoot.getElementById("content").resetStyleInheritance = true; |
-} |
-</script> |
-</head> |
-<body onload="runTests()"> |
- <p>[bug 112322] <a href="https://bugs.webkit.org/show_bug.cgi?id=112322">https://bugs.webkit.org/show_bug.cgi?id=112322</a> This test ensures WebKit does not crash when checking whether distributed nodes have any pseudo element or not. If there is no crash, the test passes.</p> |
- <div id='host'> |
- <span>PASS</span> |
- </div> |
-</body> |
- |