mirror of
https://github.com/servo/servo.git
synced 2025-08-31 18:18:21 +01:00
Update web-platform-tests to revision 2b7dace05fc1869398ee24f84fda4c0e4c0455ae
This commit is contained in:
parent
b23125d590
commit
6c901de216
844 changed files with 19802 additions and 3093 deletions
|
@ -54,11 +54,11 @@
|
|||
should(
|
||||
() => audioNode.connect(context.destination, 5, 0),
|
||||
'audioNode.connect(context.destination, 5, 0)')
|
||||
.throw('IndexSizeError');
|
||||
.throw(DOMException, 'IndexSizeError');
|
||||
should(
|
||||
() => audioNode.connect(context.destination, 0, 5),
|
||||
'audioNode.connect(context.destination, 0, 5)')
|
||||
.throw('IndexSizeError');
|
||||
.throw(DOMException, 'IndexSizeError');
|
||||
|
||||
should(
|
||||
() => audioNode.connect(context.destination, 0, 0),
|
||||
|
@ -71,7 +71,7 @@
|
|||
should(
|
||||
() => window.audioNode.connect(context2.destination),
|
||||
'Connecting a node to a different context')
|
||||
.throw('InvalidAccessError');
|
||||
.throw(DOMException, 'InvalidAccessError');
|
||||
|
||||
// 3-arg AudioContext doesn't create an offline context anymore.
|
||||
should(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue