OLD | NEW |
1 <html> | 1 <html> |
2 <script> | 2 <script> |
3 var frame; | 3 var frame; |
4 | 4 |
5 if (!window.gc) { | 5 if (!window.gc) { |
6 window.gc = function() { | 6 window.gc = function() { |
7 if (window.GCController) | 7 if (window.GCController) |
8 return GCController.collect(); | 8 return GCController.collect(); |
9 for (var i = 0; i < 10000; i++) { | 9 for (var i = 0; i < 10000; i++) { |
10 var s = new String("abc"); | 10 var s = new String("abc"); |
(...skipping 25 matching lines...) Expand all Loading... |
36 | 36 |
37 if (!frame.contentWindow.ondeviceorientation) | 37 if (!frame.contentWindow.ondeviceorientation) |
38 done(); | 38 done(); |
39 else | 39 else |
40 frame.contentWindow.ondeviceorientation = remove; | 40 frame.contentWindow.ondeviceorientation = remove; |
41 } | 41 } |
42 </script> | 42 </script> |
43 <body onload="crash()"> | 43 <body onload="crash()"> |
44 </body> | 44 </body> |
45 </html> | 45 </html> |
OLD | NEW |