OLD | NEW |
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 Loading... |
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> |
OLD | NEW |