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

Side by Side Diff: LayoutTests/fast/multicol/flipped-blocks-hit-test.html

Issue 25687002: Add support for the column-fill property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Put changes to problematic files (for the bots) back in. Created 7 years, 2 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
1 <div style=" 1 <div style="
2 width: 200px; 2 width: 200px;
3 height: 100px; 3 height: 100px;
4 -webkit-columns: 2; 4 -webkit-columns: 2;
5 -webkit-column-gap: 0; 5 -webkit-column-gap: 0;
6 columns: 2;
7 column-gap: 0;
8 column-fill: auto;
6 -webkit-writing-mode: horizontal-bt; 9 -webkit-writing-mode: horizontal-bt;
7 font: 20px ahem; 10 font: 20px ahem;
8 "> 11 ">
9 1111 2222 3333 4444 5 12 1111 2222 3333 4444 5
10 <div></div> 13 <div></div>
11 </div> 14 </div>
12 <p id="result">The test did not run.</p> 15 <p id="result">The test did not run.</p>
13 <script> 16 <script>
14 if (window.testRunner) 17 if (window.testRunner)
15 testRunner.dumpAsText(); 18 testRunner.dumpAsText();
16 19
17 var offset = document.caretRangeFromPoint(38, 18).startOffset; 20 var offset = document.caretRangeFromPoint(38, 18).startOffset;
18 document.getElementById("result").innerText = offset === 26 ? "PASS" : "FAIL "; 21 document.getElementById("result").innerText = offset === 26 ? "PASS" : "FAIL ";
19 </script> 22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698