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 <script> | 5 <script> |
6 if (window.layoutTestController) { | 6 if (window.layoutTestController) { |
7 layoutTestController.waitUntilDone(); | 7 layoutTestController.waitUntilDone(); |
8 layoutTestController.dumpAsText(); | 8 layoutTestController.dumpAsText(); |
9 } | 9 } |
10 </script> | 10 </script> |
11 <img style="background-image:-webkit-cross-fade(url(resources/abe.png), url(reso
urces/abe.png), 1%)"/> | 11 <img style="background-image:-webkit-cross-fade(url(resources/abe.png), url(reso
urces/abe.png), 1%)"/> |
12 <script> | 12 <script> |
13 function triggerReload() | 13 function triggerReload() |
14 { | 14 { |
15 location.hash += "x"; | 15 location.hash += "x"; |
16 location.reload(); | 16 location.reload(); |
17 } | 17 } |
18 if (location.hash == '#xxxx') { | 18 if (location.hash == '#xxxx') { |
19 if (window.layoutTestController) | 19 if (window.layoutTestController) |
20 layoutTestController.notifyDone(); | 20 layoutTestController.notifyDone(); |
21 } else | 21 } else |
22 setTimeout("triggerReload()", 10); | 22 setTimeout("triggerReload()", 10); |
23 </script> | 23 </script> |
24 </body> | 24 </body> |
25 </html> | 25 </html> |
OLD | NEW |