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

Unified Diff: LayoutTests/fast/regions/auto-size/autoheight-abspos-bottom-align.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/autoheight-abspos-bottom-align.html
diff --git a/LayoutTests/fast/regions/auto-size/autoheight-abspos-bottom-align.html b/LayoutTests/fast/regions/auto-size/autoheight-abspos-bottom-align.html
deleted file mode 100644
index 32f7c889dfe04755f448ed5993462cf35d6ac84e..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/auto-size/autoheight-abspos-bottom-align.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <style>
- #content { -webkit-flow-into: flow; }
- #region { -webkit-flow-from: flow; position: absolute; bottom: 0px; right: 0px; width: 100px; background-color: green;}
- #reference { position: absolute; bottom: 0px; right: 0px; width: 100px; height: 150px; background-color: red; }
- </style>
- </head>
- <script src="../../../resources/check-layout.js"></script>
- <body onload="checkLayout('#region')">
- <p>Test that an auto-height region, absolutely positioned with bottom 0, is correctly sized and positioned.</p>
- <p>On success you should see PASS below and a green rectangle in the lower right corner.</p>
- <div id="content">
- <div style="width: 100px; height: 50px;"></div>
- <div style="width: 100px; height: 50px;"></div>
- <div style="width: 100px; height: 50px;"></div>
- </div>
- <div id="reference"></div>
- <div id="region" data-total-y=0></div>
- <script>
- var referenceOffsetTop = document.getElementById('reference').offsetTop;
- document.getElementById("region").setAttribute("data-total-y", referenceOffsetTop);
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698