Index: third_party/WebKit/LayoutTests/webaudio/waveshaper-364379.html |
diff --git a/third_party/WebKit/LayoutTests/webaudio/waveshaper-364379.html b/third_party/WebKit/LayoutTests/webaudio/waveshaper-364379.html |
deleted file mode 100644 |
index e19267b9cb20d76e2e99f8cd01a37572b61419e7..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/webaudio/waveshaper-364379.html |
+++ /dev/null |
@@ -1,41 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
-<html> |
- <head> |
- <script src="../resources/js-test.js"></script> |
- <script src="resources/compatibility.js"></script> |
- </head> |
- |
- <body> |
- <div id="description"></div> |
- <div id="console"></div> |
- |
- <script> |
- description("Test WaveShaperNode"); |
- |
- function runTest() { |
- if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
- } |
- |
- window.jsTestIsAsync = true; |
- |
- // Simplified test from crbug.com/364379 |
- var sampleRate = 44100; |
- var context = new OfflineAudioContext(1, sampleRate, sampleRate); |
- var waveShaper = context.createWaveShaper(); |
- context.oncomplete = function () { |
- // If we get here, we passed the test from bug 364379. Just say we succeeded. |
- testPassed("WaveShaper successfully handled change in oversampling"); |
- finishJSTest(); |
- }; |
- context.startRendering(); |
- waveShaper.connect(context.destination); |
- waveShaper.oversample = "4x"; |
- } |
- |
- runTest(); |
- successfullyParsed = true; |
- </script> |
- </body> |
-</html> |