Commit a9834fdf authored by Raymond Toy's avatar Raymond Toy Committed by Commit Bot

Use valid sample rate for offline context

The test offlineaudiocontext-detached-execution-context.tentative.html
uses a sample rate of 3000 Hz, but the spec only mandates a minimum
sample rate of 8000 Hz.  Update the test to use a sample rate of 8
kHz.

Bug: 1137014
Test: offlineaudiocontext-detached-execution-context.tentative.html
Change-Id: I7fb2069e8c69f77224aad6f92a8acf9e02cba72d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2462233Reviewed-by: default avatarHongchan Choi <hongchan@chromium.org>
Commit-Queue: Raymond Toy <rtoy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#816331}
parent 04c37c71
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
// Use the lowest value possible for the faster test. // Use the lowest value possible for the faster test.
let context = let context =
new iframe.contentWindow.OfflineAudioContext(1, 1, 3000); new iframe.contentWindow.OfflineAudioContext(1, 1, 8000);
document.body.removeChild(iframe); document.body.removeChild(iframe);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment