Index: LayoutTests/fast/regions/flow-anonymous-children.html |
diff --git a/LayoutTests/fast/regions/flow-anonymous-children.html b/LayoutTests/fast/regions/flow-anonymous-children.html |
deleted file mode 100644 |
index 536c15271af9a5a80824c019674be064b71d036b..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/flow-anonymous-children.html |
+++ /dev/null |
@@ -1,25 +0,0 @@ |
-<!DOCTYPE html> |
- |
-<style> |
-.flow { -webkit-flow-into: flow; } |
-#region { -webkit-flow-from: flow; } |
-span { display: inline-block; } |
-</style> |
- |
-<span id="el1" class="flow"></span> |
-<!-- Force creation of an anonymous block. --> |
-<div class="flow"></div> |
-<span id="el2"></span> |
- |
-<div id="region"></div> |
- |
-<script> |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- var el1 = document.getElementById("el1"); |
- var el2 = document.getElementById("el2"); |
- el1.style.display = "none"; |
- el2.className = "flow"; |
- // Test passes if there's no crash. |
- document.write("PASS"); |
-</script> |