Index: LayoutTests/fast/runin/crash-when-reparent-sibling.html |
diff --git a/LayoutTests/fast/runin/crash-when-reparent-sibling.html b/LayoutTests/fast/runin/crash-when-reparent-sibling.html |
deleted file mode 100644 |
index 346593fe5805be56406482f14ce790a0c3ba59dc..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/runin/crash-when-reparent-sibling.html |
+++ /dev/null |
@@ -1,45 +0,0 @@ |
-<html> |
- <head> |
- <script> |
- function runTest() |
- { |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
- // Create a run-in. |
- var elem = document.createElement("div"); |
- elem.id = "run-in"; |
- elem.innerHTML = "run-in"; |
- elem.setAttribute("style", "display: run-in"); |
- document.body.appendChild(elem); |
- |
- // Create a sibling block to the run-in. |
- elem = document.createElement("div"); |
- elem.id = "block-sibling"; |
- elem.innerHTML = "block sibling"; |
- document.body.appendChild(elem); |
- |
- // Trigger a re-paint. |
- document.body.offsetTop; |
- |
- // Add a block child to the run-in. |
- elem = document.createElement("div"); |
- elem.innerHTML = "block child"; |
- elem.setAttribute("style", "display: table"); |
- document.getElementById("run-in").appendChild(elem); |
- |
- // Trigger a re-paint. |
- document.body.offsetTop; |
- |
- // Reparent the run-in's sibling block. |
- document.getElementById("output").appendChild(document.getElementById("block-sibling")); |
- document.getElementById("result").innerHTML = "PASS"; |
- } |
- </script> |
- </head> |
- <body onload="runTest()"> |
- <div id="result"></div> |
- Output: <br/> |
- <div id="output"></div> |
- </body> |
-</html> |