OLD | NEW |
1 <html> | 1 <html> |
2 <script> | 2 <script> |
3 svgNS = "http://www.w3.org/2000/svg"; | 3 svgNS = "http://www.w3.org/2000/svg"; |
4 | 4 |
5 gc = window.gc || function() | 5 gc = window.gc || function() |
6 { | 6 { |
7 if (window.GCController) | 7 if (window.GCController) |
8 GCController.collect(); | 8 GCController.collect(); |
9 | 9 |
10 for (var i = 0; i < 10000; ++i) | 10 for (var i = 0; i < 10000; ++i) |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 document.body.removeChild(cursor); | 46 document.body.removeChild(cursor); |
47 cursor = null; | 47 cursor = null; |
48 gc(); | 48 gc(); |
49 | 49 |
50 document.body.innerHTML = "PASS"; | 50 document.body.innerHTML = "PASS"; |
51 if (window.layoutTestController) | 51 if (window.layoutTestController) |
52 layoutTestController.notifyDone(); | 52 layoutTestController.notifyDone(); |
53 } | 53 } |
54 </script> | 54 </script> |
55 </html> | 55 </html> |
OLD | NEW |