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

Unified Diff: LayoutTests/fast/multicol/hit-test-above-or-below.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-above-or-below.html
diff --git a/LayoutTests/fast/multicol/hit-test-above-or-below.html b/LayoutTests/fast/multicol/hit-test-above-or-below.html
deleted file mode 100644
index 5458a0ad960a5c2c5e6b20a6e2c4f0dda58eac58..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/hit-test-above-or-below.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<body style="margin: 0">
-<div style="margin: 50px; background-color: lightblue; width: 800px; height: 200px; -webkit-column-width:185px; -webkit-column-gap:15px; column-width:185px; column-gap:15px; column-fill:auto; font-family: Ahem; font-size: 50px; line-height: 1;">
- 123<div style="background-color: blue; height: 70px;"></div>abc<br>def<div style="background-color: blue; height: 60px;"></div>ghi<br>jkl<div style="background-color: blue; height: 110px;"></div>mno</div>
-<pre id="console" style="display: none;"></pre>
-<script>
- function characterAtPoint(x, y)
- {
- var range = document.caretRangeFromPoint(x, y);
- if (range.startContainer.nodeType !== Node.TEXT_NODE)
- return null;
- if (range.startOffset >= range.startContainer.length)
- return null;
- return range.startContainer.data[range.startOffset];
- }
-
- function log(message)
- {
- document.getElementById("console").appendChild(document.createTextNode(message + "\n"));
- }
-
- function test(x, y, character)
- {
- var actualCharacter = characterAtPoint(x, y);
- if (character === actualCharacter)
- log ("Character at " + x + ", " + y + " is " + character + " as expected.");
- else
- log ("FAIL: Character at " + x + ", " + y + " is " + actualCharacter + ". Expected " + character + ".");
- }
-
- if (window.testRunner)
- testRunner.dumpAsText();
-
- test(150, 25, "1");
- test(350, 25, "d");
- test(550, 25, "j");
- test(750, 25, "m");
-
- test(150, 275, "d");
- test(350, 275, "j");
- test(550, 275, "m");
- test(750, 275, null);
-
- test(150, 475, "d");
- test(350, 475, "j");
- test(550, 475, "m");
- test(750, 475, null);
-
- document.getElementById("console").style.display = "block";
-</script>

Powered by Google App Engine
This is Rietveld 408576698