| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../resources/js-test.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
| 4 <script src="../../editing/editing.js"></script> | 4 <script src="../../editing/editing.js"></script> |
| 5 <style> | 5 <style> |
| 6 body { overflow:hidden; } |
| 7 |
| 6 .testDiv { | 8 .testDiv { |
| 7 width: 200px; | 9 width: 200px; |
| 8 height: 20px; | 10 height: 20px; |
| 9 border: 1px solid black; | 11 border: 1px solid black; |
| 10 white-space: nowrap; | 12 white-space: nowrap; |
| 11 overflow: hidden; | 13 overflow: hidden; |
| 12 } | 14 } |
| 13 | 15 |
| 14 .forcertl { | 16 .forcertl { |
| 15 direction: rtl; | 17 direction: rtl; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 { | 105 { |
| 104 var next = tests.shift(); | 106 var next = tests.shift(); |
| 105 if (next) | 107 if (next) |
| 106 return window.setTimeout(next, 0); | 108 return window.setTimeout(next, 0); |
| 107 | 109 |
| 108 finishJSTest(); | 110 finishJSTest(); |
| 109 } | 111 } |
| 110 </script> | 112 </script> |
| 111 </body> | 113 </body> |
| 112 </html> | 114 </html> |
| OLD | NEW |