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

Unified Diff: LayoutTests/fast/multicol/hit-test-float.html

Issue 299373006: Move old multicol tests to a separate directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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/multicol/hit-test-float.html
diff --git a/LayoutTests/fast/multicol/hit-test-float.html b/LayoutTests/fast/multicol/hit-test-float.html
deleted file mode 100644
index a78054dbae0bc14435c283133cb5ce8a78796d8a..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/hit-test-float.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<style>
- #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=44730">https://bugs.webkit.org/show_bug.cgi?id=44730</a>
- Floats inside of multicol fail to hit test</i>.
-</p>
-<p>
- The red square should turn green when hovered.
-</p>
-<div style="-webkit-columns:2; columns:2; column-fill:auto; margin: 100; width: 300; height: 200; outline: solid black;">
- <div>
- <div style="height: 250px; background-color: purple;"></div>
- <div style="float: right; background-color: lightyellow; margin: 5px;">
- <div id="target"></div>
- </div>
- </div>
-</div>
-<div id="result">FAIL: Test did not run.</div>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var result = document.getElementById("result");
- var hitElement = document.elementFromPoint(370, 250);
- if (hitElement === document.getElementById("target"))
- result.innerText = "PASS";
- else
- result.innerText = "FAIL: Hit " + hitElement;
-</script>

Powered by Google App Engine
This is Rietveld 408576698