Index: LayoutTests/fast/regions/mathml-crash.html |
diff --git a/LayoutTests/fast/regions/mathml-crash.html b/LayoutTests/fast/regions/mathml-crash.html |
deleted file mode 100644 |
index 3f57ceacc4ced4942737b1c9412c5a6e2b740f96..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/mathml-crash.html |
+++ /dev/null |
@@ -1,44 +0,0 @@ |
-<html> |
-<head> |
- <title>Test for MathML crash</title> |
- <script src="../../resources/js-test.js"></script> |
- <style> |
- #example-text { |
- -webkit-flow-into: example-text-flow; |
- padding: 0; |
- margin: 0; |
- } |
- .regions { |
- -webkit-flow-from: example-text-flow; |
- border: 1px solid black; |
- width: 200px; |
- height: 50px; |
- } |
- </style> |
-</head> |
-<body> |
-<div> |
- <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=110686">110686</a>: [CSS Regions] Crash when MathML used in CSS Regions</p> |
- <p>This test PASSES if it does not CRASH or ASSERT.</p> |
- <div id="example-text"> |
- <div> |
- <math> |
- <mrow> |
- <mn>2</mn> |
- <mo>+</mo> |
- <mn>4</mn> |
- </mrow> |
- </math> |
- </div> |
- </div> |
- <div class="regions"></div> |
-</div> |
-<script type="text/javascript"> |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
-document.body.offsetTop; |
-if (window.testRunner) |
- document.getElementById("example-text").style.display = "none"; |
-</script> |
-</body> |
-</html> |