Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: LayoutTests/fast/regions/auto-size/autosize-abspos-anchoredregion-vertlr.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/regions/auto-size/autosize-abspos-anchoredregion-vertlr.html
diff --git a/LayoutTests/fast/regions/auto-size/autosize-abspos-anchoredregion-vertlr.html b/LayoutTests/fast/regions/auto-size/autosize-abspos-anchoredregion-vertlr.html
deleted file mode 100644
index 27ea1fb70a32ffc5db244f027d649d06b9e437b2..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/auto-size/autosize-abspos-anchoredregion-vertlr.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!doctype html>
-<html style="-webkit-writing-mode: vertical-lr">
- <head>
- <style>
- .container { position: relative; width: 100px; height: 100px; xborder: 1px solid red; }
- .region { -webkit-flow-from: flow; position: absolute; border: 1px solid green; }
- .anchoredVertically { left: 0px; right: 0px; }
- .anchoredHorizontally { top: 0px; bottom: 0px; }
-
- #region2 { height: 50px; }
- #region4 { width: 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-width=100></div>
- </div>
-
- <div class="container">
- <div id="region2" class="region anchoredVertically" data-expected-width=100></div>
- </div>
-
- <div class="container">
- <div id="region3" class="region anchoredHorizontally" data-expected-height=100></div>
- </div>
-
- <div class="container">
- <div id="region4" class="region anchoredHorizontally" data-expected-height=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>

Powered by Google App Engine
This is Rietveld 408576698