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

Unified Diff: LayoutTests/fast/multicol/hit-test-gap-between-pages-flipped.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-gap-between-pages-flipped.html
diff --git a/LayoutTests/fast/multicol/hit-test-gap-between-pages-flipped.html b/LayoutTests/fast/multicol/hit-test-gap-between-pages-flipped.html
deleted file mode 100644
index 829f52951c3d5074fb4be53fa258fc4ac85443cc..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/hit-test-gap-between-pages-flipped.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
- <body style="margin: 0;">
- <div style="-webkit-writing-mode: horizontal-bt; overflow: -webkit-paged-x; -webkit-column-gap: 20px; height: 600px; width: 100px;">
- <div style="height: 50%;"></div>
- <div style="height: 50%;"></div>
- <div style="height: 50%;"></div>
- <div id="target" style="height: 50%;"></div>
- <div id="result"></div>
- </div>
- <script>
- if (window.testRunner)
- testRunner.dumpAsText();
- // FIXME: This is incorrect. The startContainer should be the 3rd div, not the 4th.
- document.getElementById("result").innerText = document.caretRangeFromPoint(115, 550).startContainer === document.getElementById("target") ? "PASS" : "FAIL";
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698