Index: LayoutTests/fast/regions/region-with-float-parent.html |
diff --git a/LayoutTests/fast/regions/region-with-float-parent.html b/LayoutTests/fast/regions/region-with-float-parent.html |
deleted file mode 100644 |
index d067f284438431570d68c7b99735b20194b64ebb..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/region-with-float-parent.html |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-<!DOCTYPE html> |
-<style> |
- .content { |
- display: inline-block; |
- width: 100px; |
- height: 100px; |
- background-color: salmon; |
- } |
- |
- .region { border: 5px solid pink; } |
- .regionParent { float: left; border: 5px solid blue; } |
-</style> |
-<script src="../../resources/check-layout.js"></script> |
-<body> |
- <p>Test that the width of a floating block is correctly computed when its child is a region</p> |
- <p>On success, you will see a series of PASS below.</p> |
- |
- <div class="container" style="height: 150px;"> |
- <div class="content" style="-webkit-flow-into: flow1;"></div> |
- <div class="regionParent" data-expected-width="220"> |
- <div class="region" style="-webkit-flow-from: flow1; width: 200px;"></div> |
- </div> |
- </div> |
- |
- <div class="container" style="height: 150px;"> |
- <div class="content" style="-webkit-flow-into: flow2;"></div> |
- <div class="regionParent" data-expected-width="220"> |
- <div class="region" style="-webkit-flow-from: flow2; min-width: 200px;"></div> |
- </div> |
- </div> |
- |
- <div class="container" style="height: 250px;"> |
- <div class="content" style="-webkit-flow-into: flow3;"></div> |
- <div class="content" style="-webkit-flow-into: flow3;"></div> |
- <div class="content" style="-webkit-flow-into: flow3;"></div> |
- <div class="regionParent" data-expected-width="220"> |
- <div class="region" style="-webkit-flow-from: flow3; max-width: 200px;"></div> |
- </div> |
- </div> |
- |
- <script>checkLayout(".regionParent");</script> |
-</body> |