Index: LayoutTests/mathml/mo-stretch-crash.html |
=================================================================== |
--- LayoutTests/mathml/mo-stretch-crash.html (revision 139389) |
+++ LayoutTests/mathml/mo-stretch-crash.html (working copy) |
@@ -1,30 +0,0 @@ |
-<!DOCTYPE html> |
-<q id=quote></q> |
-<dd id=dd> |
-<body id=body> |
- <style> |
- dd, q, mfenced, div { |
- width: 7px; |
- overflow-y: auto; |
- padding-left: 100%; |
- } |
- </style> |
- <script> |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
- body.contentEditable = "true"; |
- function crash() { |
- mfenced = document.createElementNS("http://www.w3.org/1998/Math/MathML", "mfenced"); |
- div = document.createElement("div"); |
- mfenced.appendChild(div); |
- dd.appendChild(mfenced); |
- body.style.display = "-webkit-flex"; |
- div.appendChild(quote); |
- } |
- window.addEventListener("load", crash, false); |
- </script> |
- |
-This test passes if it does not crash. |
-</body> |
-</dd> |