Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Unified Diff: third_party/WebKit/LayoutTests/webaudio/waveshaper-364379.html

Issue 2581463002: Refactor WebAudio test directory (Closed)
Patch Set: Use correct path for wav result files Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698