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

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

Issue 2789883002: setValueCurveAtTime takes sequence<float> for curve (Closed)
Patch Set: Rebaseline test results 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 4bcefa9434a20a2a76933da9d1eb2b392f890c12..597206e05520bed0dd4932b25ad901f4c1df693c 100644
--- a/third_party/WebKit/LayoutTests/webaudio/dom-exceptions.html
+++ b/third_party/WebKit/LayoutTests/webaudio/dom-exceptions.html
@@ -355,13 +355,6 @@ audit.define('audioparam', (task, should) => {
'param.setValueCurveAtTime(null, 0, 0)')
.throw();
- if (window.SharedArrayBuffer) {
- should(
- () => param.setValueCurveAtTime(new Float32Array(new SharedArrayBuffer(16)), 0, 0),
- 'param.setValueCurveAtTime(SharedArrayBuffer view, 0, 0)')
- .throw();
- }
-
// exponentialRampToValue should throw only for "zero" target values.
should(
() => node.gain.exponentialRampToValueAtTime(-1, 0.1),

Powered by Google App Engine
This is Rietveld 408576698