OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 Test passes if it does not crash. | 4 Test passes if it does not crash. |
5 <style> | 5 <style> |
6 #test1 { | 6 #test1 { |
7 display: table-cell; | 7 display: table-cell; |
8 content: counter(c); | 8 content: counter(c); |
9 counter-reset: c; | 9 counter-reset: c; |
10 width: 1000px; | 10 width: 1000px; |
(...skipping 29 matching lines...) Expand all Loading... |
40 if (window.layoutTestController) { | 40 if (window.layoutTestController) { |
41 GCController.collect(); | 41 GCController.collect(); |
42 eventSender.mouseMoveTo(500, 500); | 42 eventSender.mouseMoveTo(500, 500); |
43 layoutTestController.notifyDone(); | 43 layoutTestController.notifyDone(); |
44 } | 44 } |
45 } | 45 } |
46 window.onload = crash; | 46 window.onload = crash; |
47 </script> | 47 </script> |
48 </body> | 48 </body> |
49 </html> | 49 </html> |
OLD | NEW |