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

Side by Side Diff: LayoutTests/editing/selection/caret-alignment-for-vertical-text.html

Issue 1212753002: Convert tests (except fast/, imported/) using ahem font to ahem.js style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/ahem.js"></script>
4 <style> 5 <style>
5 .editableDiv { 6 .editableDiv {
6 height: 200px; 7 height: 200px;
7 width: 200px; 8 width: 200px;
8 border: 1px solid black; 9 border: 1px solid black;
9 -webkit-writing-mode: vertical-rl; 10 -webkit-writing-mode: vertical-rl;
10 font-family: Ahem; 11 font-family: Ahem;
11 } 12 }
12 </style> 13 </style>
13 <script src="../../resources/js-test.js"></script> 14 <script src="../../resources/js-test.js"></script>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 </script> 47 </script>
47 </head> 48 </head>
48 <body onload="runTest();"> 49 <body onload="runTest();">
49 <div style="float: left;" contenteditable="true" class="editableDiv" id="emptyDi v"></div> 50 <div style="float: left;" contenteditable="true" class="editableDiv" id="emptyDi v"></div>
50 <div style="float: left;" contenteditable="true" class="editableDiv" id="emptyLi neDiv"><div><br></div></div> 51 <div style="float: left;" contenteditable="true" class="editableDiv" id="emptyLi neDiv"><div><br></div></div>
51 <div contenteditable="true" class="editableDiv" id="textDiv">this is some vertic al text</div> 52 <div contenteditable="true" class="editableDiv" id="textDiv">this is some vertic al text</div>
52 <div id="description"></div> 53 <div id="description"></div>
53 <div id="console"></div> 54 <div id="console"></div>
54 </body> 55 </body>
55 </html> 56 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698