Index: LayoutTests/fast/regions/auto-size/autoheight-region-decrease-width.html |
diff --git a/LayoutTests/fast/regions/auto-size/autoheight-region-decrease-width.html b/LayoutTests/fast/regions/auto-size/autoheight-region-decrease-width.html |
deleted file mode 100644 |
index b26e9f71fd4b77802d389d550ba76a0d08d59284..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/auto-size/autoheight-region-decrease-width.html |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-<!doctype html> |
-<html> |
- <head> |
- <style> |
- #content { -webkit-flow-into: flow; font: 50px/1 Ahem; } |
- #region { -webkit-flow-from: flow; position: absolute; top: 200px; } |
- .regionWidth { width: 150px; } |
- .regionWidth2 { width: 100px; } |
- </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=103738"> [CSS Regions] min-max height will not trigger a relayout when set on a region with auto-height</a>.</p> |
- <p>On success you should see PASS below.</p> |
- <div id="content"> |
- a a a a a a |
- </div> |
- <div id="region" class="regionWidth" data-expected-height=300></div> |
- <script> |
- document.body.offsetTop; // force layout |
- document.getElementById("region").className = "regionWidth2"; |
- </script> |
- </body> |
-</html> |