Index: LayoutTests/fast/regions/webkit-flow-float-unable-to-push.html |
diff --git a/LayoutTests/fast/regions/webkit-flow-float-unable-to-push.html b/LayoutTests/fast/regions/webkit-flow-float-unable-to-push.html |
deleted file mode 100644 |
index 35fa8aad878f38b1d16a78141d504f3b596f13da..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/webkit-flow-float-unable-to-push.html |
+++ /dev/null |
@@ -1,64 +0,0 @@ |
-<!doctype html> |
- |
- <style> |
- #content { |
- -webkit-flow-into: flow1; |
- text-align: justify; |
- padding: 5px; |
- font-size: 10px; |
- font-family: Ahem; |
- -webkit-font-smoothing: none; |
- } |
- |
- #first-box { |
- border: 1px solid blue; |
- } |
- |
- #second-box { |
- margin:10px; |
- border: 1px solid green; |
- } |
- |
- #float1 { |
- float: right; |
- width: 130px; |
- height: 100px; |
- background-color:green; |
- } |
- |
- #region1, #region2, #region3 { |
- border: 1px solid black; |
- -webkit-flow-from: flow1; |
- } |
- |
- #region1 { |
- width: 400px; |
- height: 90px; |
- } |
- |
- #region2 { |
- width: 300px; |
- height: 90px; |
- } |
- |
- #region3 { |
- width: 400px; |
- height: 90px; |
- } |
-</style> |
- |
-<div id="content"> |
- <div id="first-box"> |
- <div id="second-box"> |
- <p>This line of text<img id="float1" src="resources/transparent.png"> should not get out of the region. This line of text should not get out of the region. This line of text should not get out of the region. This line of text should not get out of the region.</p> |
- <p>This line of text should not get out of the region. This line of text should not get out of the region. This line of text should not get out of the region. This line of text should not get out of the region.</p> |
- <p>This line of text should not get out of the region.</p> |
- </div> |
- </div> |
-</div> |
- |
-<div id="container"> |
- <div id="region1"></div> |
- <div id="region2"></div> |
- <div id="region3"></div> |
-</div> |