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

Unified Diff: LayoutTests/fast/dom/shadow/insertion-point-resetStyleInheritance-with-pseudo-element-crash.html

Issue 201683003: Remove resetStyleInheritance. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Resolve conflicts Created 6 years, 9 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/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>
-

Powered by Google App Engine
This is Rietveld 408576698