Index: LayoutTests/fast/regions/top-overflow-out-of-second-region.html |
diff --git a/LayoutTests/fast/regions/top-overflow-out-of-second-region.html b/LayoutTests/fast/regions/top-overflow-out-of-second-region.html |
deleted file mode 100644 |
index 9858cda24cf6ab441ea379907929f48befc84228..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/top-overflow-out-of-second-region.html |
+++ /dev/null |
@@ -1,64 +0,0 @@ |
-<!doctype html> |
- |
- <style> |
- #content { |
- -webkit-flow-into: flow1; |
- text-align: justify; |
- padding: 5px; |
- } |
- |
- #first-box { |
- border: 1px solid blue; |
- margin-top:100px; |
- } |
- |
- #second-box { |
- margin:-100px auto 0 auto; |
- border: 1px solid green; |
- width:75% |
- } |
- |
- #region1, #region2, #region3 { |
- border: 1px solid black; |
- -webkit-flow-from: flow1; |
- } |
- |
- #region1 { |
- width: 300px; |
- height: 100px; |
- } |
- |
- #region2 { |
- width: 400px; |
- height: 200px; |
- } |
- |
- #region3 { |
- width: 0px; |
- height: 0px; |
- } |
-</style> |
- |
-<body> |
- |
-<p>In the test case below, the green block's width should not vary and should use the second region to determine its width. |
-It is overflowing upwards out of the blue block, and so the portion that overflows should continue to use the blue block's |
-containing block width. The blue block does not exist in region one, so using some hypothetical made-up width is incorrect. |
-The overflow should be spilling out of the top of region two and be painted in region one. |
- |
-<div id="content"> |
- <div id="first-box"> |
- <div id="second-box"> |
- <p>These lines should all fit to the width of the block in the second region and spill out of the top of the second |
- region.</P> |
- <p>These lines should all fit to the width of the block in the second region and spill out of the top of the second |
- region.</P> |
- </div> |
- </div> |
-</div> |
- |
-<div id="container"> |
- <div id="region1"></div> |
- <div id="region2"></div> |
- <div id="region3"></div> |
-</div> |