mirror of
https://github.com/servo/servo.git
synced 2025-08-24 22:58:21 +01:00
Update web-platform-tests to revision abd18b3e018d25ed668d179c905b7869dca5e239
This commit is contained in:
parent
908a642063
commit
158f7eec0e
117 changed files with 2997 additions and 434 deletions
|
@ -46,11 +46,11 @@
|
|||
// Try calling connect() method with illegal values.
|
||||
should(
|
||||
() => audioNode.connect(0, 0, 0), 'audioNode.connect(0, 0, 0)')
|
||||
.throw('TypeError');
|
||||
.throw(TypeError);
|
||||
should(
|
||||
() => audioNode.connect(null, 0, 0),
|
||||
'audioNode.connect(null, 0, 0)')
|
||||
.throw('TypeError');
|
||||
.throw(TypeError);
|
||||
should(
|
||||
() => audioNode.connect(context.destination, 5, 0),
|
||||
'audioNode.connect(context.destination, 5, 0)')
|
||||
|
@ -77,7 +77,7 @@
|
|||
should(
|
||||
() => context3 = new AudioContext(1, 44100, 44100),
|
||||
'context3 = new AudioContext(1, 44100, 44100)')
|
||||
.throw('TypeError');
|
||||
.throw(TypeError);
|
||||
|
||||
// Ensure it is an EventTarget
|
||||
should(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue