Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Unified Diff: LayoutTests/crypto/aes-cbc-decrypt-failure.html

Issue 258203003: [webcrypto] Define the DOMException OperationError. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase, just in case... Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/crypto/aes-cbc-decrypt-failure-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/crypto/aes-cbc-decrypt-failure.html
diff --git a/LayoutTests/crypto/aes-cbc-decrypt-failure.html b/LayoutTests/crypto/aes-cbc-decrypt-failure.html
index 2e8f0102c09553a84d75b011c5b05cc6e5b46f14..2c76ef429b21b0a4a9eb9e9380b88313d0d2b884 100644
--- a/LayoutTests/crypto/aes-cbc-decrypt-failure.html
+++ b/LayoutTests/crypto/aes-cbc-decrypt-failure.html
@@ -33,6 +33,7 @@ function verifyDecryptionFails(newCipherTextLength)
return crypto.subtle.decrypt(algorithm, key, newCipherText).then(function(result) {
debug("FAIL: decrypting succeeded. " + description);
}, function(result) {
+ logError(result);
debug("PASS: decrypting failed. " + description);
});
}
« no previous file with comments | « no previous file | LayoutTests/crypto/aes-cbc-decrypt-failure-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698