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

Unified Diff: LayoutTests/webaudio/dom-exceptions-expected.txt

Issue 1180613007: Allow larger arrays up to size 8192 for PeriodicWave (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase and use Audit.runTasks() Created 5 years, 5 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
« no previous file with comments | « LayoutTests/webaudio/dom-exceptions.html ('k') | LayoutTests/webaudio/osc-low-freq.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/webaudio/dom-exceptions-expected.txt
diff --git a/LayoutTests/webaudio/dom-exceptions-expected.txt b/LayoutTests/webaudio/dom-exceptions-expected.txt
index 5b6a68ec728ef45cd64b8e52f35a0adf42322dcd..a4fa403aca14e9242ceb47e1c15323977cac2318 100644
--- a/LayoutTests/webaudio/dom-exceptions-expected.txt
+++ b/LayoutTests/webaudio/dom-exceptions-expected.txt
@@ -29,11 +29,10 @@ PASS context.createChannelMerger(0) threw exception IndexSizeError: Failed to ex
PASS context.createChannelMerger(99) threw exception IndexSizeError: Failed to execute 'createChannelMerger' on 'AudioContext': The number of inputs provided (99) is outside the range [1, 32]..
PASS context.createPeriodicWave(null, null) threw exception SyntaxError: Failed to execute 'createPeriodicWave' on 'AudioContext': invalid real array.
PASS context.createPeriodicWave(new Float32Array(10), null) threw exception SyntaxError: Failed to execute 'createPeriodicWave' on 'AudioContext': invalid imaginary array.
-PASS context.createPeriodicWave(new Float32Array(4100), new Float32Array(4100)) threw exception IndexSizeError: Failed to execute 'createPeriodicWave' on 'AudioContext': The length of the real part array provided (4100) is outside the range [1, 2048]..
-PASS context.createPeriodicWave(new Float32Array(100), new Float32Array(4100)) threw exception IndexSizeError: Failed to execute 'createPeriodicWave' on 'AudioContext': The length of the imaginary part array provided (4100) is outside the range [1, 2048]..
+PASS context.createPeriodicWave(new Float32Array(4100), new Float32Array(4100)) did not throw exception.
+PASS context.createPeriodicWave(new Float32Array(8192), new Float32Array(8192)) did not throw exception.
+PASS context.createPeriodicWave(new Float32Array(10000), new Float32Array(10000)) did not throw exception.
PASS context.createPeriodicWave(new Float32Array(10), new Float32Array(7)) threw exception IndexSizeError: Failed to execute 'createPeriodicWave' on 'AudioContext': length of real array (10) and length of imaginary array (7) must match..
-PASS context.createPeriodicWave(new Float32Array(2048), new Float32Array(2048)) did not throw exception.
-PASS context.createPeriodicWave(new Float32Array(2049), new Float32Array(2049)) threw exception IndexSizeError: Failed to execute 'createPeriodicWave' on 'AudioContext': The length of the real part array provided (2049) is outside the range [1, 2048]..
PASS node.fftSize = 42 threw exception IndexSizeError: Failed to set the 'fftSize' property on 'AnalyserNode': The value provided (42) is not a power of two..
PASS node.fftSize is not 42
PASS node.fftSize = 16 threw exception IndexSizeError: Failed to set the 'fftSize' property on 'AnalyserNode': The FFT size provided (16) is outside the range [32, 32768]..
« no previous file with comments | « LayoutTests/webaudio/dom-exceptions.html ('k') | LayoutTests/webaudio/osc-low-freq.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698