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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 var next = tests.shift(); | 102 var next = tests.shift(); |
101 if (next) | 103 if (next) |
102 return window.setTimeout(next, 0); | 104 return window.setTimeout(next, 0); |
103 | 105 |
104 finishJSTest(); | 106 finishJSTest(); |
105 } | 107 } |
106 done(); | 108 done(); |
107 </script> | 109 </script> |
108 </body> | 110 </body> |
109 </html> | 111 </html> |
OLD | NEW |