| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Test premature GC upon OscillatorNode and AudioBufferSourceNode</titl
e> | 4 <title>Test premature GC upon OscillatorNode and AudioBufferSourceNode</titl
e> |
| 5 <script src="../resources/js-test.js"></script> | 5 <script src="../resources/js-test.js"></script> |
| 6 <script src="resources/audit-util.js"></script> |
| 6 <script src="resources/audio-testing.js"></script> | 7 <script src="resources/audio-testing.js"></script> |
| 7 </head> | 8 </head> |
| 8 | 9 |
| 9 <body> | 10 <body> |
| 10 <script type="text/javascript"> | 11 <script type="text/javascript"> |
| 11 description("Test premature GC upon OscillatorNode and AudioBufferSourceNo
de"); | 12 description("Test premature GC upon OscillatorNode and AudioBufferSourceNo
de"); |
| 12 window.jsTestIsAsync = true; | 13 window.jsTestIsAsync = true; |
| 13 | 14 |
| 14 var sampleRate = 44100; | 15 var sampleRate = 44100; |
| 15 var renderDuration = 1; | 16 var renderDuration = 1; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 audit.runTasks( | 74 audit.runTasks( |
| 74 'oscillator-onended', | 75 'oscillator-onended', |
| 75 'buffersource-onended', | 76 'buffersource-onended', |
| 76 'finish' | 77 'finish' |
| 77 ); | 78 ); |
| 78 | 79 |
| 79 succesfullyParsed = true; | 80 succesfullyParsed = true; |
| 80 </script> | 81 </script> |
| 81 </body> | 82 </body> |
| 82 </html> | 83 </html> |
| OLD | NEW |