Index: LayoutTests/fast/regions/layers/float-region-promoted-to-layer-expected.html |
diff --git a/LayoutTests/fast/regions/layers/float-region-promoted-to-layer-expected.html b/LayoutTests/fast/regions/layers/float-region-promoted-to-layer-expected.html |
deleted file mode 100644 |
index 3697820d9257fa16f042edadbccf52e5562ec0e4..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/layers/float-region-promoted-to-layer-expected.html |
+++ /dev/null |
@@ -1,54 +0,0 @@ |
-<!doctype html> |
-<html> |
- <head> |
- <link rel="stylesheet" href="../resources/region-style.css"> |
- <style> |
- .dummyFloat |
- { |
- float: left; |
- width: 1px; |
- height: 10px; |
- } |
- .box1 |
- { |
- width: 50px; |
- height: 10px; |
- } |
- .box2 |
- { |
- /* The following border will be painted on top of the first region */ |
- border-left: gray 50px solid; |
- /* Making box2 have its own layer */ |
- position: relative; |
- width: 200px; |
- height: 60px; |
- } |
- .borderBox |
- { |
- border: none; |
- } |
- </style> |
- </head> |
- <body> |
- <div class="box1"> |
- <div class="dummyFloat"></div> |
- <div class="borderBox" style="position: relative"> |
- <div class="redBox"></div> |
- </div> |
- </div> |
- |
- <div class="box2"> |
- <div class="borderBox"> |
- <div class="orangeBox"></div> |
- </div> |
- </div> |
- |
- <p>Testing that regions become layers as required by the content that display in those regions. |
- In this case the region is also a float and we are testing that the correct enclosing |
- layer will paint the region as needed. In this case box1 is responsible of painting |
- the first region, even though the whole element fits inside box2. |
- There should be two boxes: one taller gray box and one orange box. The orange box has a black border. |
- The test fails if there's any red on screen. |
- </p> |
- </body> |
-</html> |