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/dynamicscompressor-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/dynamicscompressor-basic.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/dynamicscompressor-basic.html b/third_party/WebKit/LayoutTests/webaudio/dynamicscompressor-basic.html
deleted file mode 100644
index b0771f628d81bcb48bf587f88a70c830fc1a7b02..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/webaudio/dynamicscompressor-basic.html
+++ /dev/null
@@ -1,78 +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("Basic tests for DynamicsCompressorNode API.");
-
-var context;
-var compressor;
-
-function runTest() {
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- window.jsTestIsAsync = true;
-
- context = new AudioContext();
- compressor = context.createDynamicsCompressor();
-
- try {
- if (compressor.threshold.value == -24)
- testPassed("threshold attribute has correct default value.");
- else
- testFailed("threshold attribute has incorrect default value.");
-
- if (compressor.knee.value == 30)
- testPassed("knee attribute has correct default value.");
- else
- testFailed("knee attribute has incorrect default value.");
-
- if (compressor.ratio.value == 12)
- testPassed("ratio attribute has correct default value.");
- else
- testFailed("ratio attribute has incorrect default value.");
-
- if (compressor.attack.value === Math.fround(0.003))
- testPassed("attack attribute has correct default value.");
- else
- testFailed("attack attribute has incorrect default value.");
-
- if (compressor.release.value === 0.25)
- testPassed("release attribute has correct default value.");
- else
- testFailed("release attribute has incorrect default value.");
-
- if (typeof compressor.reduction === "number") {
- testPassed("reduction attribute is a number.")
- if (compressor.reduction == 0)
- testPassed("reduction attribute has correct default value.")
- } else {
- testFailed("reduction attribute is an " + compressor.reduction.constructor.name + " not a number.");
- }
-
- } catch(e) {
- testFailed("Exception thrown when accessing DynamicsCompressorNode attributes.");
- }
-
- finishJSTest();
-}
-
-runTest();
-
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698