| 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();
|
| });
|
|
|
|
|