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

Unified Diff: LayoutTests/fast/multicol/hit-test-end-of-column.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-end-of-column.html
diff --git a/LayoutTests/fast/multicol/hit-test-end-of-column.html b/LayoutTests/fast/multicol/hit-test-end-of-column.html
deleted file mode 100644
index 0dae3692f5f24327e91da297cd019b22a1cbfcf6..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/hit-test-end-of-column.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<div id="target" style="
- outline: dashed lightblue;
- width: 400px;
- -webkit-columns: 2;
- -webkit-column-gap: 0;
- columns: 2;
- column-gap: 0;
- column-fill: auto;
- height: 90px;
- font: 20px Ahem;
-">Lorem ipsum dolor sit amet consectetur elit.</div>
-<p id="result">
- FAIL: Test did not run.
-</p>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- // Clicking below the last line in the first column should not select anything from the first
- // line on the second column.
- var target = document.getElementById("target");
- var hitOffset = document.caretRangeFromPoint(target.offsetLeft + 45, target.offsetTop + 87).startOffset;
- document.getElementById("result").innerText = hitOffset === 26 || hitOffset === 24 ? "PASS" : "FAIL: hit offset " + hitOffset + ".";
-</script>

Powered by Google App Engine
This is Rietveld 408576698