Index: LayoutTests/fast/regions/overflow-in-uniform-regions-dynamic.html |
diff --git a/LayoutTests/fast/regions/overflow-in-uniform-regions-dynamic.html b/LayoutTests/fast/regions/overflow-in-uniform-regions-dynamic.html |
deleted file mode 100644 |
index 3548e66bdbac2335ac8164a26c4dc2780104bd7e..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/overflow-in-uniform-regions-dynamic.html |
+++ /dev/null |
@@ -1,49 +0,0 @@ |
-<!DOCTYPE html> |
-<link rel="stylesheet" href="resources/region-style.css"> |
-<style> |
- #region1, #region2, #region3 { |
- border: 1px solid black; |
- -webkit-flow-from: flow1; |
- } |
- |
- #region1 { |
- width: 400px; |
- height: 150px; |
- } |
- |
- #region2 { |
- width: 400px; |
- height: 150px; |
- } |
- |
- #region3 { |
- width: 400px; |
- height: 150px; |
- } |
-</style> |
-<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. The green box should be even with the lime floats at the top of the first region.</p> |
- |
-<div class="overflowContentFlow"> |
- <div class="overflowFirstBox" style="padding: 5px;"> |
- <div class="overflowBox floatLeft" id="float1"></div><div class="overflowBox floatRight" id="float2"></div> |
- <div class="overflowSecondBox"> |
- <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> |
- <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> |
- |
-<script> |
- document.body.offsetLeft; |
- document.getElementById('float1').style.width = '50px'; |
- document.getElementById('float2').style.width = '50px'; |
-</script> |