Index: LayoutTests/fast/regions/floats-basic-in-variable-width-regions.html |
diff --git a/LayoutTests/fast/regions/floats-basic-in-variable-width-regions.html b/LayoutTests/fast/regions/floats-basic-in-variable-width-regions.html |
deleted file mode 100644 |
index 61b1c03a7ce84226132923f2266dda965a0ea901..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/floats-basic-in-variable-width-regions.html |
+++ /dev/null |
@@ -1,63 +0,0 @@ |
-<!doctype html> |
- |
- <style> |
- #content { |
- -webkit-flow-into: flow1; |
- padding: 5px; |
- } |
- |
- #first-box { |
- border: 1px solid blue; |
- } |
- |
- #second-box { |
- margin:auto; |
- border: 1px solid green; |
- width:75% |
- } |
- |
- #region1, #region2, #region3 { |
- border: 1px solid black; |
- -webkit-flow-from: flow1; |
- } |
- |
- #region1 { |
- width: 280px; |
- height: 100px; |
- } |
- |
- #region2 { |
- width: 400px; |
- height: 180px; |
- } |
- |
- #region3 { |
- width: 220px; |
- height: 120px; |
- } |
- |
- .float { width:50px; height:50px; background-color: lime; } |
- .left { float: left } |
- .right { float: right } |
-</style> |
- |
-<body> |
-<!--<p>The first and last lines of text in the regions below should be clipped to the green box. The overflow |
-section sizes itself and clips differently in each region.</p>--> |
-<div id="content"> |
- <div id="first-box"> |
- <div id="second-box"> |
- <div class="float left"></div> <div class="float right"></div> |
- <p>These lines will not spill out of the regions. These lines will not spill out </p> |
- <p>of the regions. These lines will not spill out of the regions. These lines will not spill out of the regions. </p> |
- <p>These lines will not spill out of the regions. These lines will not spill out of the regions. |
- These lines will not spill out of the regions. These lines will not spill out of the regions. </p> |
- </div> |
- </div> |
-</div> |
- |
-<div id="container"> |
- <div id="region1"></div> |
- <div id="region2"></div> |
- <div id="region3"></div> |
-</div> |