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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <div style="-webkit-writing-mode: horizontal-bt;">
2 <div style="
3 margin-top: 300px;
4 outline: dashed lightblue;
5 height: 100px;
6 width: 100px;
7 border-bottom: 25px solid;
8 -webkit-column-axis: vertical;
9 -webkit-column-gap: 50px;
10 ">
11 <div style="height: 100px; background-color: silver;"></div>
12 <div id="target" style="height: 100px; background-color: silver;"></div>
13 <div style="height: 100px; background-color: silver;"></div>
14 </div>
15 </div>
16 <p id="result">FAIL: Test did not run.</p>
17 <script>
18 if (window.testRunner)
19 testRunner.dumpAsText();
20
21 var hitContainer = document.caretRangeFromPoint(208, 208).startContainer;
22 var target = document.getElementById("target");
23 document.getElementById("result").innerText = hitContainer === target ? "PAS S" : "FAIL";
24 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698