OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <script> | |
4 if (window.testRunner) { | |
5 testRunner.dumpAsText(); | |
6 testRunner.waitUntilDone(); | |
7 } | |
8 if (window.eventSender) | |
9 for (i=0; i<10; i++) | |
10 setTimeout('eventSender.mouseMoveTo(' + i + ', ' + i + ');', i); | |
11 setTimeout(function() { | |
12 document.body.innerHTML = "This test passes if it does not crash."; | |
13 if (window.testRunner) | |
14 testRunner.notifyDone(); | |
15 }, 10); | |
16 </script> | |
17 <style> | |
18 @font-face { font-family: "A"; src: url(); } | |
19 * { font-family: A; } | |
20 </style> | |
21 </head> | |
22 <body> | |
23 <!-- Multiple lines of text are needed to crash --> | |
24 This is a really long line. This is a really long line. This is a really lon
g line. This is a really long line. This is a really long line. This is a really
long line. This is a really long line. This is a really long line. This is a re
ally long line. This is a really long line. This is a really long line. This is
a really long line. This is a really long line. | |
25 <iframe seamless src="resources/nested-seamless.html"></iframe> | |
26 <!-- This lonely <style> is needed to crash --> | |
27 <style> | |
28 </style> | |
29 </body> | |
30 </html> | |
OLD | NEW |