OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../fast/js/resources/js-test-pre.js"></script> | 2 <script src="../resources/js-test.js"></script> |
3 <body> | 3 <body> |
4 <script> | 4 <script> |
5 description('Tests that a script processor node is not prematurely GCed'); | 5 description('Tests that a script processor node is not prematurely GCed'); |
6 var jsTestIsAsync = true; | 6 var jsTestIsAsync = true; |
7 | 7 |
8 if (!window.internals) { | 8 if (!window.internals) { |
9 testFailed('This test requires window.internals.'); | 9 testFailed('This test requires window.internals.'); |
10 finishJSTest(); | 10 finishJSTest(); |
11 } | 11 } |
12 | 12 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 } | 78 } |
79 | 79 |
80 function step2() { | 80 function step2() { |
81 test(false, finishJSTest); | 81 test(false, finishJSTest); |
82 } | 82 } |
83 | 83 |
84 step1(); | 84 step1(); |
85 | 85 |
86 var successfullyParsed = true; | 86 var successfullyParsed = true; |
87 </script> | 87 </script> |
OLD | NEW |