Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / webaudio / audiosummingjunction-crash.html
1 <body>
2 <script src="../resources/js-test.js">
3 <script>
4 description("This test passes if it doesn't crash.");
5 var ac = new AudioContext();
6 var node = ac.createChannelMerger(4);
7 node.connect(ac.createMediaStreamDestination(), 0);
8 gc();
9 </script>
10 </body>