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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/dom-exceptions.html

Issue 2807673002: createPeriodicWave parameters are sequence<float> (Closed)
Patch Set: Rebaseline test Created 3 years, 8 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/dom-exceptions.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/dom-exceptions.html b/third_party/WebKit/LayoutTests/webaudio/dom-exceptions.html
index 72a36d1fa346da7aaa82d177e6740bcdbf563f3b..4bcefa9434a20a2a76933da9d1eb2b392f890c12 100644
--- a/third_party/WebKit/LayoutTests/webaudio/dom-exceptions.html
+++ b/third_party/WebKit/LayoutTests/webaudio/dom-exceptions.html
@@ -197,20 +197,6 @@ audit.define('createPeriodicWave', (task, should) => {
'context.createPeriodicWave(new Float32Array(10), new Float32Array(7))')
.throw('IndexSizeError');
- if (window.SharedArrayBuffer) {
- let shared_view = new Float32Array(new SharedArrayBuffer(4100 * 4));
- let nonshared_view = new Float32Array(4100);
- should(
- () => context.createPeriodicWave(shared_view, nonshared_view),
- 'context.createPeriodicWave(shared_view, nonshared_view)')
- .throw('TypeError');
-
- should(
- () => context.createPeriodicWave(nonshared_view, shared_view),
- 'context.createPeriodicWave(nonshared_view, shared_view)')
- .throw('TypeError');
- }
-
task.done();
});

Powered by Google App Engine
This is Rietveld 408576698