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