Index: LayoutTests/crypto/encrypt-decrypt-expected.txt |
diff --git a/LayoutTests/crypto/encrypt-decrypt-expected.txt b/LayoutTests/crypto/encrypt-decrypt-expected.txt |
index 88306415986a5e67f1fac557bf868b54cf0d1388..504178e48894830515a7e71ca713abcd874b9cbf 100644 |
--- a/LayoutTests/crypto/encrypt-decrypt-expected.txt |
+++ b/LayoutTests/crypto/encrypt-decrypt-expected.txt |
@@ -57,9 +57,9 @@ PASS crypto.subtle.encrypt({name: 'AES-CTR', counter: new Uint8Array[16], length |
PASS crypto.subtle.encrypt({name: 'AES-CTR', counter: new Uint8Array[16], length: 18}, keys.aesCtr, data) threw exception TypeError: undefined is not a function. |
PASS crypto.subtle.encrypt({name: 'AES-CTR', counter: new Uint8Array[16], length: -3}, keys.aesCtr, data) threw exception TypeError: undefined is not a function. |
PASS crypto.subtle.encrypt({name: 'AES-CTR', counter: new Uint8Array[16], length: Infinity}, keys.aesCtr, data) threw exception TypeError: undefined is not a function. |
-PASS crypto.subtle.encrypt(aesCbc, keys.hmacSha1, data) threw exception NotSupportedError: key.algorithm does not match that of operation. |
-PASS crypto.subtle.encrypt(aesCbc, keys.aesCbcJustDecrypt, data) threw exception NotSupportedError: key.usages does not permit this operation. |
-PASS crypto.subtle.encrypt({name: 'bogus'}, null, data) threw exception TypeError: Invalid key argument. |
+PASS crypto.subtle.encrypt(aesCbc, keys.hmacSha1, data) threw exception NotSupportedError: Failed to execute 'encrypt' on 'SubtleCrypto': key.algorithm does not match that of operation. |
+PASS crypto.subtle.encrypt(aesCbc, keys.aesCbcJustDecrypt, data) threw exception NotSupportedError: Failed to execute 'encrypt' on 'SubtleCrypto': key.usages does not permit this operation. |
+PASS crypto.subtle.encrypt({name: 'bogus'}, null, data) threw exception TypeError: Failed to execute 'encrypt' on 'SubtleCrypto': Invalid key argument. |
PASS successfullyParsed is true |
TEST COMPLETE |