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 .testDiv { | 6 .testDiv { |
7 width: 200px; | 7 width: 200px; |
8 height: 20px; | 8 height: 20px; |
9 border: 1px solid black; | 9 border: 1px solid black; |
10 white-space: nowrap; | 10 white-space: nowrap; |
11 overflow: hidden; | 11 overflow: hidden; |
12 -webkit-transform: translateZ(0); | 12 transform: translateZ(0); |
13 } | 13 } |
14 | 14 |
15 .forcertl { | 15 .forcertl { |
16 direction: rtl; | 16 direction: rtl; |
17 unicode-bidi: bidi-override; | 17 unicode-bidi: bidi-override; |
18 } | 18 } |
19 | 19 |
20 .ellipses { | 20 .ellipses { |
21 text-overflow:ellipsis; | 21 text-overflow:ellipsis; |
22 } | 22 } |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 { | 104 { |
105 var next = tests.shift(); | 105 var next = tests.shift(); |
106 if (next) | 106 if (next) |
107 return window.setTimeout(next, 0); | 107 return window.setTimeout(next, 0); |
108 | 108 |
109 finishJSTest(); | 109 finishJSTest(); |
110 } | 110 } |
111 </script> | 111 </script> |
112 </body> | 112 </body> |
113 </html> | 113 </html> |
OLD | NEW |