crogers@google.com | baa073d | 2011-09-06 22:51:33 +0000 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | |
| 3 | <html> |
| 4 | <head> |
mark.lam@apple.com | 16a5a24 | 2013-09-08 06:11:31 +0000 | [diff] [blame] | 5 | <script src="../resources/js-test-pre.js"></script> |
commit-queue@webkit.org | a5723e0 | 2012-06-11 22:05:36 +0000 | [diff] [blame] | 6 | <script src="resources/audio-testing.js"></script> |
crogers@google.com | baa073d | 2011-09-06 22:51:33 +0000 | [diff] [blame] | 7 | </head> |
| 8 | |
| 9 | <body> |
| 10 | <div id="description"></div> |
| 11 | <div id="console"></div> |
| 12 | |
| 13 | <script> |
| 14 | description("Tests garbage collection of MediaElementAudioSourceNode."); |
| 15 | |
crogers@google.com | baa073d | 2011-09-06 22:51:33 +0000 | [diff] [blame] | 16 | function runTest() { |
rniwa@webkit.org | cc082ecd | 2012-06-16 03:42:58 +0000 | [diff] [blame] | 17 | if (window.testRunner) { |
| 18 | testRunner.dumpAsText(); |
philn@webkit.org | 1b7d8f5 | 2011-10-13 06:52:56 +0000 | [diff] [blame] | 19 | } |
| 20 | |
crogers@google.com | baa073d | 2011-09-06 22:51:33 +0000 | [diff] [blame] | 21 | audioElement = document.createElement("audio"); |
cdumez@apple.com | 30567fc | 2020-09-23 22:48:05 +0000 | [diff] [blame] | 22 | context = new AudioContext({ sampleRate: 44100 }); |
crogers@google.com | baa073d | 2011-09-06 22:51:33 +0000 | [diff] [blame] | 23 | source = context.createMediaElementSource(audioElement); |
| 24 | audioElement = null; |
| 25 | context = null; |
| 26 | source = null; |
| 27 | gc(); |
| 28 | |
| 29 | testPassed("MediaElementAudioSourceNode survived garbage collection."); |
| 30 | |
| 31 | finishJSTest(); |
| 32 | } |
| 33 | |
| 34 | runTest(); |
crogers@google.com | baa073d | 2011-09-06 22:51:33 +0000 | [diff] [blame] | 35 | |
| 36 | </script> |
| 37 | |
mark.lam@apple.com | 16a5a24 | 2013-09-08 06:11:31 +0000 | [diff] [blame] | 38 | <script src="../resources/js-test-post.js"></script> |
crogers@google.com | baa073d | 2011-09-06 22:51:33 +0000 | [diff] [blame] | 39 | </body> |
| 40 | </html> |