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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/offlineaudiocontext-constructor.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/offlineaudiocontext-constructor.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/offlineaudiocontext-constructor.html b/third_party/WebKit/LayoutTests/webaudio/offlineaudiocontext-constructor.html
deleted file mode 100644
index b80d5d1912f853df213311c7ccdffd95d42477c4..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/webaudio/offlineaudiocontext-constructor.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../resources/js-test.js"></script>
-<script src="resources/compatibility.js"></script>
-</head>
-<body>
-<script>
-description("Tests the OfflineAudioContext constructor");
-
-var context;
-// Make sure we don't crash when giving 0 as number of frames.
-shouldThrow("new OfflineAudioContext(1, 0, 44100)");
-// Make sure we don't throw exceptions for supported ranges of sample rates for an OfflineAudioContext.
-shouldThrow("context = new OfflineAudioContext(2, 512, 2999)");
-shouldNotThrow("context = new OfflineAudioContext(2, 512, 3000)");
-shouldBeEqualToNumber("context.length", 512);
-shouldNotThrow("context = new OfflineAudioContext(2, 1024, 384000)");
-shouldBeEqualToNumber("context.length", 1024);
-shouldThrow("context = new OfflineAudioContext(2, 1024, 384001)");
-shouldNotThrow("context = new OfflineAudioContext(2, 2048, 8000)");
-shouldBeEqualToNumber("context.length", 2048);
-shouldNotThrow("context = new OfflineAudioContext(2, 4096, 11025)");
-shouldBeEqualToNumber("context.length", 4096);
-shouldNotThrow("context = new OfflineAudioContext(2, 512, 22050)");
-shouldBeEqualToNumber("context.length", 512);
-shouldNotThrow("context = new OfflineAudioContext(2, 512, 44100)");
-shouldBeEqualToNumber("context.length", 512);
-shouldNotThrow("context = new OfflineAudioContext(2, 512, 48000)");
-shouldBeEqualToNumber("context.length", 512);
-shouldNotThrow("context = new OfflineAudioContext(2, 512, 88200)");
-shouldBeEqualToNumber("context.length", 512);
-// Make sure length is read-only.
-shouldNotThrow("context.length = 99");
-shouldBeEqualToNumber("context.length", 512);
-shouldNotThrow("context = new OfflineAudioContext(2, 512, 96000)");
-// Make sure we throw exceptions for non-finite sample rates.
-shouldThrow("context = new OfflineAudioContext(1, 0, NaN)");
-shouldThrow("context = new OfflineAudioContext(1, 0, Infinity)");
-// Verify channel counts and other destination attributes are set correctly.
-shouldNotThrow("context = new OfflineAudioContext(7, 512, 48000)");
-shouldBeEqualToNumber("context.destination.channelCount", 7);
-shouldBeEqualToNumber("context.destination.maxChannelCount", 7);
-shouldBeEqualToString("context.destination.channelCountMode", "explicit");
-shouldBeEqualToString("context.destination.channelInterpretation", "speakers");
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698