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

Unified Diff: LayoutTests/fast/multicol/hit-test-block-axis-flipped.html

Issue 201573009: Remove -webkit-column-progression and -webkit-column-axis properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master (fixed the DOS-style line break issue there) Created 6 years, 9 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-block-axis-flipped.html
diff --git a/LayoutTests/fast/multicol/hit-test-block-axis-flipped.html b/LayoutTests/fast/multicol/hit-test-block-axis-flipped.html
deleted file mode 100644
index e3511f78fea61316b53259aaf3cd04e6678432b3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/hit-test-block-axis-flipped.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<div style="-webkit-writing-mode: horizontal-bt;">
- <div style="
- margin-top: 300px;
- outline: dashed lightblue;
- height: 100px;
- width: 100px;
- border-bottom: 25px solid;
- -webkit-column-axis: vertical;
- -webkit-column-gap: 50px;
- ">
- <div style="height: 100px; background-color: silver;"></div>
- <div id="target" style="height: 100px; background-color: silver;"></div>
- <div style="height: 100px; background-color: silver;"></div>
- </div>
-</div>
-<p id="result">FAIL: Test did not run.</p>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var hitContainer = document.caretRangeFromPoint(208, 208).startContainer;
- var target = document.getElementById("target");
- document.getElementById("result").innerText = hitContainer === target ? "PASS" : "FAIL";
-</script>

Powered by Google App Engine
This is Rietveld 408576698