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

Unified Diff: LayoutTests/fast/regions/hit-test-abspos-overflow-region.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/hit-test-abspos-overflow-region.html
diff --git a/LayoutTests/fast/regions/hit-test-abspos-overflow-region.html b/LayoutTests/fast/regions/hit-test-abspos-overflow-region.html
deleted file mode 100644
index 4e0de2b729c099feed6cc982e27a58615aeb7978..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/hit-test-abspos-overflow-region.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <style>
- #region { -webkit-flow-from: flow; position: absolute; top: 120px; left: 120px; width: 50px; height: 50px; border: 50px solid blue; background-color: salmon; overflow: hidden; }
- #region:hover { border: 50px solid green; }
- </style>
- </head>
- <body>
- <p>Test that hit-testing of out-of-flow regions with overflow: hidden works properly</p>
- <p>To manually test, move the mouse over the blue border. It should change its color to green.</p>
- <div id="result"></div>
- <div id="region"></div>
- <script>
- if (window.testRunner)
- window.testRunner.dumpAsText();
- var result = document.getElementById("result");
-
- // Find a point inside the region's border.
- var hitElement = document.elementFromPoint(150, 150);
- if (hitElement == document.getElementById("region"))
- result.innerText = "PASS";
- else
- result.innerText = "FAIL: hit " + hitElement;
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698