Index: LayoutTests/fast/regions/auto-size/autosize-abspos-anchoredregion.html |
diff --git a/LayoutTests/fast/regions/auto-size/autosize-abspos-anchoredregion.html b/LayoutTests/fast/regions/auto-size/autosize-abspos-anchoredregion.html |
deleted file mode 100644 |
index 4f11cb6ecc621a5dd20c56c7dcd37f756877e1d1..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/auto-size/autosize-abspos-anchoredregion.html |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-<!doctype html> |
-<html> |
- <head> |
- <style> |
- .container { position: relative; width: 100px; height: 100px; border: 1px solid red; } |
- .region { -webkit-flow-from: flow; position: absolute; border: 1px solid green; } |
- .anchoredVertically { top: 0px; bottom: 0px; } |
- .anchoredHorizontally { left: 0px; right: 0px; } |
- |
- #region2 { width: 50px; } |
- #region4 { height: 50px; } |
- </style> |
- </head> |
- <script src="../../../resources/check-layout.js"></script> |
- <body onload="checkLayout('.region')"> |
- <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=102385"> [CSS Regions] Absolutely positioned regions do not expand to fill their container</a>.</p> |
- <p>On success, you should not see FAIL below.</p> |
- <div class="container"> |
- <div id="region1" class="region anchoredVertically" data-expected-height=100></div> |
- </div> |
- |
- <div class="container"> |
- <div id="region2" class="region anchoredVertically" data-expected-height=100></div> |
- </div> |
- |
- <div class="container"> |
- <div id="region3" class="region anchoredHorizontally" data-expected-width=100></div> |
- </div> |
- |
- <div class="container"> |
- <div id="region4" class="region anchoredHorizontally" data-expected-width=100></div> |
- </div> |
- |
- <div class="container"> |
- <div id="region5" class="region anchoredHorizontally anchoredVertically" data-expected-width=100 data-expected-height=100></div> |
- </div> |
- </body> |
-</html> |