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

Side by Side Diff: LayoutTests/fast/multicol/old/flipped-blocks-hit-test.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 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; 6 columns: 2;
7 column-gap: 0; 7 column-gap: 0;
8 column-fill: auto; 8 column-fill: auto;
9 -webkit-writing-mode: horizontal-bt; 9 -webkit-writing-mode: horizontal-bt;
10 font: 20px Ahem; 10 font: 20px Ahem;
11 "> 11 ">
12 1111 2222 3333 4444 5 12 1111 2222 3333 4444 5
13 <div></div> 13 <div></div>
14 </div> 14 </div>
15 <p id="result">The test did not run.</p> 15 <p id="result">The test did not run.</p>
16 <script> 16 <script>
17 if (window.testRunner) 17 if (window.testRunner)
18 testRunner.dumpAsText(); 18 testRunner.dumpAsText();
19 19
20 var offset = document.caretRangeFromPoint(38, 18).startOffset; 20 var offset = document.caretRangeFromPoint(38, 18).startOffset;
21 document.getElementById("result").innerText = offset === 26 ? "PASS" : "FAIL "; 21 document.getElementById("result").innerText = offset === 26 ? "PASS" : "FAIL ";
22 </script> 22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698