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

Side by Side Diff: LayoutTests/fast/multicol/hit-test-end-of-column-with-line-height.html

Issue 291823004: Update Ahem capitalization in LayoutTests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <div id="target" style=" 2 <div id="target" style="
3 outline: dashed lightblue; 3 outline: dashed lightblue;
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 width: 400px; 9 width: 400px;
10 height: 80px; 10 height: 80px;
11 font: 20px ahem; 11 font: 20px Ahem;
12 line-height: 2; 12 line-height: 2;
13 ">Lorem ipsum dolor sit amet</div> 13 ">Lorem ipsum dolor sit amet</div>
14 <pre id="console"></pre> 14 <pre id="console"></pre>
15 <script> 15 <script>
16 if (window.testRunner) 16 if (window.testRunner)
17 testRunner.dumpAsText(); 17 testRunner.dumpAsText();
18 18
19 function log(message) 19 function log(message)
20 { 20 {
21 document.getElementById("console").appendChild(document.createTextNode(m essage + "\n")); 21 document.getElementById("console").appendChild(document.createTextNode(m essage + "\n"));
(...skipping 14 matching lines...) Expand all
36 36
37 // Clicking above the last line in the first column should not select anythi ng from the first 37 // Clicking above the last line in the first column should not select anythi ng from the first
38 // line on the second column. 38 // line on the second column.
39 hitOffset = document.caretRangeFromPoint(target.offsetLeft + 190, target.off setTop + 3).startOffset; 39 hitOffset = document.caretRangeFromPoint(target.offsetLeft + 190, target.off setTop + 3).startOffset;
40 log(hitOffset === 11 ? "PASS" : "FAIL: hit offset " + hitOffset + "."); 40 log(hitOffset === 11 ? "PASS" : "FAIL: hit offset " + hitOffset + ".");
41 41
42 // Clicking below the first line in the second column should not snap to the beginning of the line. 42 // Clicking below the first line in the second column should not snap to the beginning of the line.
43 hitOffset = document.caretRangeFromPoint(target.offsetLeft + 250, target.off setTop + 78).startOffset; 43 hitOffset = document.caretRangeFromPoint(target.offsetLeft + 250, target.off setTop + 78).startOffset;
44 log(hitOffset === 14 ? "PASS" : "FAIL: hit offset " + hitOffset + "."); 44 log(hitOffset === 14 ? "PASS" : "FAIL: hit offset " + hitOffset + ".");
45 </script> 45 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/multicol/hit-test-end-of-column.html ('k') | LayoutTests/fast/multicol/pageLogicalOffset-vertical.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698