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

Unified Diff: LayoutTests/crypto/aes-ctr-generateKey-parseAlgorithm-failures.html

Issue 801793003: Improve LayoutTest output for Errors (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
Index: LayoutTests/crypto/aes-ctr-generateKey-parseAlgorithm-failures.html
diff --git a/LayoutTests/crypto/aes-ctr-generateKey-parseAlgorithm-failures.html b/LayoutTests/crypto/aes-ctr-generateKey-parseAlgorithm-failures.html
index 2d2c24eb377a21544a6526fa7a6a04e58b1a5d5e..016375af5e4df5d5d0b5d814c1a7e46649b03e27 100644
--- a/LayoutTests/crypto/aes-ctr-generateKey-parseAlgorithm-failures.html
+++ b/LayoutTests/crypto/aes-ctr-generateKey-parseAlgorithm-failures.html
@@ -16,18 +16,22 @@ extractable = true;
keyUsages = ['encrypt', 'decrypt'];
Promise.resolve(null).then(function() {
+ debug("\ngenerateKey() without length...");
return crypto.subtle.generateKey({ name: 'aes-ctr' }, extractable, keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
+ debug("\ngenerateKey() with a length of 70000...");
return crypto.subtle.generateKey({ name: 'aes-ctr', length: 70000 }, extractable, keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
+ debug("\ngenerateKey() with a length of -3...");
return crypto.subtle.generateKey({ name: 'aes-ctr', length: -3 }, extractable, keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
+ debug("\ngenerateKey() with length that is minus Infinity...");
return crypto.subtle.generateKey({ name: 'aes-ctr', length: -Infinity }, extractable, keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);

Powered by Google App Engine
This is Rietveld 408576698