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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/audionode-connect-order.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/audionode-connect-order.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/audionode-connect-order.html b/third_party/WebKit/LayoutTests/webaudio/audionode-connect-order.html
deleted file mode 100644
index 9c51356240e853a27fe3c71266cab984ec217f2e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/webaudio/audionode-connect-order.html
+++ /dev/null
@@ -1,74 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
-<script src="../resources/js-test.js"></script>
-<script src="resources/compatibility.js"></script>
-<script src="resources/audit-util.js"></script>
-<script src="resources/audio-testing.js"></script>
-</head>
-
-<body>
-
-<div id="description"></div>
-<div id="console"></div>
-
-<script>
-description("This tests that we don't trigger an assertion failure due to AudioNode connection order.");
-
-var sampleRate = 44100.0;
-var renderLengthSeconds = 0.125;
-var delayTimeSeconds = 0.1;
-
-function createSinWaveBuffer(context, lengthInSeconds, frequency) {
- var audioBuffer = context.createBuffer(1, lengthInSeconds * sampleRate, sampleRate);
-
- var n = audioBuffer.length;
- var data = audioBuffer.getChannelData(0);
-
- for (var i = 0; i < n; ++i) {
- data[i] = Math.sin(frequency * 2 * Math.PI * i / sampleRate);
- }
-
- return audioBuffer;
-}
-
-function runTest() {
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- window.jsTestIsAsync = true;
-
- // Create offline audio context.
- var context = new OfflineAudioContext(1, sampleRate * renderLengthSeconds, sampleRate);
- var toneBuffer = createSinWaveBuffer(context, renderLengthSeconds, 880);
-
- var bufferSource = context.createBufferSource();
- bufferSource.buffer = toneBuffer;
- bufferSource.connect(context.destination);
-
- var delay = context.createDelay();
- delay.delayTime.value = delayTimeSeconds;
-
- // We connect delay node to gain node before anything is connected to delay node itself.
- // We do this because we try to trigger the ASSERT which might be fired due to AudioNode connection order,
- // especially when gain node and delay node is involved e.g. https://bugs.webkit.org/show_bug.cgi?id=76685.
-
- var gain = context.createGain();
- gain.connect(context.destination);
- delay.connect(gain);
-
- bufferSource.start(0);
-
- context.oncomplete = finishJSTest;
- context.startRendering();
-}
-
-runTest();
-
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698