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

Unified Diff: LayoutTests/fast/regions/hit-test-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-region.html
diff --git a/LayoutTests/fast/regions/hit-test-region.html b/LayoutTests/fast/regions/hit-test-region.html
deleted file mode 100644
index 85ae15d61bc05e847e3683bc89531a7f5ad9d69e..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/hit-test-region.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<style type="text/css">
-#content { -webkit-flow-into: article; }
-.region{
- -webkit-flow-from: article;
- width:200px;
- height:500px;
- float:left;
- margin: 50px;
-}
-#target { width: 50px; height: 50px; background-color: red; margin: 10px; }
-#target:hover { background-color: green; }
-</style>
-<p>
- Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=76456">https://bugs.webkit.org/show_bug.cgi?id=76456</a>
- Inconsistent text selection behavior in regions</i>.
-</p>
-<p>
- The red square should turn green when hovered.
-</p>
-<div id="region1" class="region"></div>
-<div id="region2" class="region"></div>
-
-<div id="content" style="outline: solid black">
- <div>
- <div style="height: 800px; background-color: purple;"></div>
- <div style="float: right; background-color: lightyellow; margin: 5px;">
- <div id="target"></div>
- </div>
- </div>
-</div>
-<div id="result" style="clear:both">FAIL: Test did not run.</div>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var result = document.getElementById("result");
- var hitElement = document.elementFromPoint(520, 465);
- if (hitElement === document.getElementById("target"))
- result.innerText = "PASS";
- else
- result.innerText = "FAIL: Hit " + hitElement;
-</script>
« no previous file with comments | « LayoutTests/fast/regions/hit-test-float-expected.txt ('k') | LayoutTests/fast/regions/hit-test-region-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698