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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/audioparam-nominal-range-expected.txt

Issue 2059823002: Use correct value for Oscillator.frequency.minValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update results for Windows. Created 4 years, 6 months 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/audioparam-nominal-range-expected.txt
diff --git a/third_party/WebKit/LayoutTests/webaudio/audioparam-nominal-range-expected.txt b/third_party/WebKit/LayoutTests/webaudio/audioparam-nominal-range-expected.txt
index 31a209f2ffb9cd7c2a558205e0aee29a38bb3356..6f7f671ac637ab46d225adeca7de600b0e7d8cb8 100644
--- a/third_party/WebKit/LayoutTests/webaudio/audioparam-nominal-range-expected.txt
+++ b/third_party/WebKit/LayoutTests/webaudio/audioparam-nominal-range-expected.txt
@@ -13,8 +13,8 @@ CONSOLE WARNING: line 386: DynamicsCompressor.release.value -1 outside nominal r
CONSOLE WARNING: line 395: DynamicsCompressor.release.value 3 outside nominal range [0, 1]; value will be clamped.
CONSOLE WARNING: line 386: BiquadFilter.frequency.value -1 outside nominal range [0, 24000]; value will be clamped.
CONSOLE WARNING: line 395: BiquadFilter.frequency.value 48001 outside nominal range [0, 24000]; value will be clamped.
-CONSOLE WARNING: line 386: Oscillator.frequency.value -1 outside nominal range [0, 24000]; value will be clamped.
-CONSOLE WARNING: line 395: Oscillator.frequency.value 48001 outside nominal range [0, 24000]; value will be clamped.
+CONSOLE WARNING: line 386: Oscillator.frequency.value -48001 outside nominal range [-24000, 24000]; value will be clamped.
+CONSOLE WARNING: line 395: Oscillator.frequency.value 48001 outside nominal range [-24000, 24000]; value will be clamped.
CONSOLE WARNING: line 438: 'AudioListener.dopplerFactor' is deprecated and will be removed in M55, around November 2016. It has no effect as the Web Audio doppler effects have already been removed internally. See https://www.chromestatus.com/features/5238926818148352 for more details.
CONSOLE WARNING: line 438: 'AudioListener.speedOfSound' is deprecated and will be removed in M55, around November 2016. It has no effect as the Web Audio doppler effects have already been removed internally. See https://www.chromestatus.com/features/5238926818148352 for more details.
CONSOLE WARNING: line 315: Delay.delayTime.setValueAtTime value -1 outside nominal range [0, 1]; value will be clamped.
@@ -147,13 +147,13 @@ PASS BiquadFilterNode.gain.maxValue = Math.PI is not equal to 3.141592653589793.
PASS BiquadFilterNode.gain.maxValue is read-only.
PASS Nominal ranges for AudioParam(s) of BiquadFilterNode are correct.
-PASS OscillatorNode.frequency.minValue is equal to 0.
+PASS OscillatorNode.frequency.minValue is equal to -24000.
PASS OscillatorNode.frequency.maxValue is equal to 24000.
PASS OscillatorNode.frequency.minValue = Math.PI is not equal to 3.141592653589793.
PASS OscillatorNode.frequency.minValue is read-only.
PASS OscillatorNode.frequency.maxValue = Math.PI is not equal to 3.141592653589793.
PASS OscillatorNode.frequency.maxValue is read-only.
-PASS Set OscillatorNode.frequency.value = -1 is equal to 0.
+PASS Set OscillatorNode.frequency.value = -48001 is equal to -24000.
PASS Set OscillatorNode.frequency.value = 48001 is equal to 24000.
PASS OscillatorNode.frequency was correctly clipped to lie within the nominal range.
PASS OscillatorNode.detune.minValue is equal to -3.4028234663852886e+38.

Powered by Google App Engine
This is Rietveld 408576698