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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/oscillator-basic.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/oscillator-basic.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/oscillator-basic.html b/third_party/WebKit/LayoutTests/webaudio/oscillator-basic.html
deleted file mode 100644
index ce53583843d99e2a80f7a4a38b19944fde90298c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/webaudio/oscillator-basic.html
+++ /dev/null
@@ -1,79 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-
-<!--
-Create an oscillator of each type and verify that the type is set correctly.
--->
-<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("Basic test of setting Oscillator node types.");
-
-var sampleRate = 44100;
-var renderLengthSeconds = 0.25;
-
-var oscTypes = ["sine", "square", "sawtooth", "triangle", "custom"];
-
-function runTest()
-{
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- window.jsTestIsAsync = true;
-
- // Create offline audio context.
- var context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, sampleRate);
- var osc = context.createOscillator();
-
- // Set each possible oscillator type (except CUSTOM) and verify that the type is correct.
- // Here we're setting the type using WebIDL enum values which are strings.
- for (var k = 0; k < oscTypes.length - 1; ++k) {
- osc.type = oscTypes[k];
- Should("osc.type = '" + oscTypes[k] + "'", osc.type).beEqualTo(oscTypes[k]);
- }
-
- // Verify that setting a custom type directly does not set the custom type. This test has to be
- // done before using setPeriodicWave.
-
- Should("osc.type = 'custom'", function () {
- osc.type = "custom";
- }).throw('InvalidStateError');
-
- // Now set a custom oscillator
- var coeffA = new Float32Array([0, 1, 0.5]);
- var coeffB = new Float32Array([0, 0, 0]);
- var wave = context.createPeriodicWave(coeffA, coeffB);
-
- Should("osc.setPeriodicWave(wave)", function () {
- osc.setPeriodicWave(wave);
- }).notThrow();
- Should("osc.type", osc.type).beEqualTo("custom");
-
- // Check that numerical values are no longer supported
- var oldType = osc.type;
- osc.type = 0;
- Should("osc.type = 0", osc.type).notBeEqualTo(0);
- Should("osc.type", osc.type).beEqualTo(oldType);
-
- finishJSTest();
-}
-
-runTest();
-successfullyParsed = true;
-
-</script>
-
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698