mirror of
https://github.com/servo/servo.git
synced 2025-08-21 21:35:32 +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
|
@ -182,9 +182,12 @@
|
|||
let message = 'new DynamicsCompressorNode(c, ' +
|
||||
JSON.stringify(options.nodeOptions) + ')';
|
||||
|
||||
if (options.expectedErrorType) {
|
||||
if (options.expectedErrorType === TypeError) {
|
||||
should(createNodeFunction(), message)
|
||||
.throw(options.expectedErrorType);
|
||||
} else if (options.expectedErrorType === 'NotSupportedError') {
|
||||
should(createNodeFunction(), message)
|
||||
.throw(DOMException, 'NotSupportedError');
|
||||
} else {
|
||||
should(createNodeFunction(), message).notThrow();
|
||||
should(node[options.testAttribute], 'node.' + options.testAttribute)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue