| Index: LayoutTests/crypto/aes-cbc-parseAlgorithm-failures.html | 
| diff --git a/LayoutTests/crypto/aes-cbc-parseAlgorithm-failures.html b/LayoutTests/crypto/aes-cbc-parseAlgorithm-failures.html | 
| index d41e48d6af8db3527148e3ce094fa79d95c3b612..6e40d4f4f91121aef4ee58f625ba88700acd8149 100644 | 
| --- a/LayoutTests/crypto/aes-cbc-parseAlgorithm-failures.html | 
| +++ b/LayoutTests/crypto/aes-cbc-parseAlgorithm-failures.html | 
| @@ -29,26 +29,22 @@ Promise.resolve(null).then(function(result) { | 
| // Bad iv | 
| return crypto.subtle.encrypt({name: 'AES-CBC', iv: null}, key, data); | 
| }).then(failAndFinishJSTest, function(result) { | 
| -    error = result; | 
| -    shouldBeNull("error"); | 
| +    logError(result); | 
|  | 
| // Missing iv | 
| return crypto.subtle.decrypt({name: 'AES-CBC'}, key, data); | 
| }).then(failAndFinishJSTest, function(result) { | 
| -    error = result; | 
| -    shouldBeNull("error"); | 
| +    logError(result); | 
|  | 
| // iv is not a buffer | 
| return crypto.subtle.encrypt({name: 'AES-CBC', iv: 3}, key, data); | 
| }).then(failAndFinishJSTest, function(result) { | 
| -    error = result; | 
| -    shouldBeNull("error"); | 
| +    logError(result); | 
|  | 
| // iv is too short | 
| return crypto.subtle.encrypt({name: 'AES-CBC', iv: new Uint8Array(0)}, key, data); | 
| }).then(failAndFinishJSTest, function(result) { | 
| -    error = result; | 
| -    shouldBeNull("error"); | 
| +    logError(result); | 
| }).then(finishJSTest, failAndFinishJSTest); | 
|  | 
| </script> | 
|  |