Index: LayoutTests/fast/regions/dialog-fragmentation.html |
diff --git a/LayoutTests/fast/regions/dialog-fragmentation.html b/LayoutTests/fast/regions/dialog-fragmentation.html |
deleted file mode 100644 |
index 7ee19b31e52b678ec620385b24d2f23994cedfa4..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/dialog-fragmentation.html |
+++ /dev/null |
@@ -1,50 +0,0 @@ |
-<html> |
- <head> |
- <style> |
- .content { |
- background-color: blue; |
- color: blue; |
- display: block; |
- position: relative; |
- padding: 0px; |
- border: none; |
- width: 80px; |
- height: 120px; |
- -webkit-flow-into: first; |
- } |
- |
- #region1 { |
- width: 160px; |
- height: 80px; |
- -webkit-flow-from: first; |
- } |
- #region2 { |
- width: 400px; |
- height: 100px; |
- -webkit-flow-from: first; |
- } |
- .red { |
- width: 100%; |
- height: 100%; |
- background-color: red; |
- } |
- </style> |
- </head> |
- |
- <body> |
- <ul> |
- <li>The blue squares are a dialog element flowed across two regions.</li> |
- <li>Test passes if you only see two blue rectangles.</li> |
- <li>Test fails if you can see text or the red color.</li> |
- </ul> |
- <dialog open class="content"> |
- xxxx<br>xxxx<br>xxxx<br>xxxx<br>Test failed!<br>xxxx |
- </dialog> |
- <div id="region1"> |
- <div class="red"></div> |
- </div> |
- <div id="region2"> |
- <div class="red"></div> |
- </div> |
- </body> |
-</html> |