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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/stereopannernode-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/stereopannernode-basic.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/stereopannernode-basic.html b/third_party/WebKit/LayoutTests/webaudio/stereopannernode-basic.html
deleted file mode 100644
index eff3e08fa3a7f180fc414499935af8a924df6391..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/webaudio/stereopannernode-basic.html
+++ /dev/null
@@ -1,44 +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("Test attribute and basic functionality of StereoPannerNode.");
-
- function checkAttributes() {
- window.jsTestIsAsync = true;
-
- var context = new AudioContext();
- var panner = context.createStereoPanner();
- window.panner = panner;
-
- shouldBeTrue('panner.numberOfInputs === 1');
- shouldBeTrue('panner.numberOfOutputs === 1');
- shouldBeTrue('panner.pan.defaultValue === 0.0');
- shouldBeTrue('panner.pan.value === 0.0');
- panner.pan.value = 1.0;
- shouldBeTrue('panner.pan.value === 1.0');
-
- shouldNotThrow('panner.channelCount = 1');
- shouldThrow('panner.channelCount = 3');
- shouldNotThrow('panner.channelCountMode = "explicit"');
- shouldThrow('panner.channelCountMode = "max"');
-
- finishJSTest();
- }
-
- checkAttributes();
- successfullyParsed = true;
- </script>
-</body>
-
-</html>

Powered by Google App Engine
This is Rietveld 408576698