| Index: third_party/WebKit/LayoutTests/webaudio/audiosummingjunction-crash.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/audiosummingjunction-crash.html b/third_party/WebKit/LayoutTests/webaudio/audiosummingjunction-crash.html
|
| deleted file mode 100644
|
| index 3074e4948b287ba54f591d648acf37c4c0529554..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/webaudio/audiosummingjunction-crash.html
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -<body>
|
| -<script src="../resources/testharness.js"></script>
|
| -<script src="../resources/testharnessreport.js"></script>
|
| -<script src="resources/audit.js"></script>
|
| -<script>
|
| -let audit = Audit.createTaskRunner();
|
| -
|
| -audit.define(
|
| - {
|
| - label: 'test',
|
| - description:
|
| - 'Test connection from ChannelMerger to MediaStreamAudioDestination'
|
| - },
|
| - (task, should) => {
|
| - let context = new AudioContext();
|
| - let node = context.createChannelMerger(4);
|
| - node.connect(context.createMediaStreamDestination(), 0);
|
| - gc();
|
| - // Test passes if we get here because we didn't crash
|
| - should(true, 'Test survived GC').message('correctly', 'incorrectly');
|
| - task.done();
|
| - });
|
| -
|
| -audit.run();
|
| -</script>
|
| -</body>
|
|
|