blob: 852894cf760f7f3202784c11ac985c090e9364da [file] [log] [blame]
crogers@google.combaa073d2011-09-06 22:51:33 +00001<!DOCTYPE html>
2
3<html>
4<head>
mark.lam@apple.com16a5a242013-09-08 06:11:31 +00005<script src="../resources/js-test-pre.js"></script>
commit-queue@webkit.orga5723e02012-06-11 22:05:36 +00006<script src="resources/audio-testing.js"></script>
crogers@google.combaa073d2011-09-06 22:51:33 +00007</head>
8
9<body>
10<div id="description"></div>
11<div id="console"></div>
12
13<script>
14description("Tests garbage collection of MediaElementAudioSourceNode.");
15
crogers@google.combaa073d2011-09-06 22:51:33 +000016function runTest() {
rniwa@webkit.orgcc082ecd2012-06-16 03:42:58 +000017 if (window.testRunner) {
18 testRunner.dumpAsText();
philn@webkit.org1b7d8f52011-10-13 06:52:56 +000019 }
20
crogers@google.combaa073d2011-09-06 22:51:33 +000021 audioElement = document.createElement("audio");
cdumez@apple.com30567fc2020-09-23 22:48:05 +000022 context = new AudioContext({ sampleRate: 44100 });
crogers@google.combaa073d2011-09-06 22:51:33 +000023 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
34runTest();
crogers@google.combaa073d2011-09-06 22:51:33 +000035
36</script>
37
mark.lam@apple.com16a5a242013-09-08 06:11:31 +000038<script src="../resources/js-test-post.js"></script>
crogers@google.combaa073d2011-09-06 22:51:33 +000039</body>
40</html>