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

Side by Side Diff: LayoutTests/fast/multicol/old/hit-test-gap-between-pages.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 <html> 1 <html>
2 <body style="margin: 0;"> 2 <body style="margin: 0;">
3 <div style="overflow: -webkit-paged-x; -webkit-column-gap: 20px; height: 300px; width: 100px; "> 3 <div style="overflow: -webkit-paged-x; -webkit-column-gap: 20px; height: 300px; width: 100px; ">
4 <div id=a style="height: 50%;"></div> 4 <div id=a style="height: 50%;"></div>
5 <div id=b style="height: 50%;"></div> 5 <div id=b style="height: 50%;"></div>
6 <div id="target" style="height: 50%;"></div> 6 <div id="target" style="height: 50%;"></div>
7 <div id=c style="height: 50%;"></div> 7 <div id=c style="height: 50%;"></div>
8 <div id="result"></div> 8 <div id="result"></div>
9 </div> 9 </div>
10 <script> 10 <script>
11 if (window.testRunner) 11 if (window.testRunner)
12 testRunner.dumpAsText(); 12 testRunner.dumpAsText();
13 document.getElementById("result").innerText = document.caretRangeFro mPoint(115, 50).startContainer === document.getElementById("target") ? "PASS" : "FAIL"; 13 document.getElementById("result").innerText = document.caretRangeFro mPoint(115, 50).startContainer === document.getElementById("target") ? "PASS" : "FAIL";
14 </script> 14 </script>
15 </body> 15 </body>
16 </html> 16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698