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

Unified Diff: LayoutTests/crypto/wrapKey-badParameters.html

Issue 222003006: [webcrypto] Don't throw any extra WebIDL exceptions from WebCrypto methods. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase 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
Index: LayoutTests/crypto/wrapKey-badParameters.html
diff --git a/LayoutTests/crypto/wrapKey-badParameters.html b/LayoutTests/crypto/wrapKey-badParameters.html
index 7130d0f17ac59e40729fd7a751f42a44e50006a0..21029e3b8a8e216648a8d7e9cb0cc68789e3a240 100644
--- a/LayoutTests/crypto/wrapKey-badParameters.html
+++ b/LayoutTests/crypto/wrapKey-badParameters.html
@@ -40,13 +40,22 @@ importWrappingKey().then(function(result) {
wrapAlgorithm = {name: 'aes-cbc', iv: new Uint8Array(16)};
// Invalid key
- shouldThrow("crypto.subtle.wrapKey('raw', 1, wrappingKey, wrapAlgorithm)");
+ return crypto.subtle.wrapKey('raw', 1, wrappingKey, wrapAlgorithm);
+}).then(failAndFinishJSTest, function(result) {
+ error = result;
+ shouldBeNull("error");
// Invalid wrappingKey
- shouldThrow("crypto.subtle.wrapKey('raw', key, '', wrapAlgorithm)");
+ return crypto.subtle.wrapKey('raw', key, '', wrapAlgorithm);
+}).then(failAndFinishJSTest, function(result) {
+ error = result;
+ shouldBeNull("error");
// Invalid wrapAlgorithm
- shouldThrow("crypto.subtle.wrapKey('raw', key, wrappingKey, undefined)");
+ return crypto.subtle.wrapKey('raw', key, wrappingKey, undefined);
+}).then(failAndFinishJSTest, function(result) {
+ error = result;
+ shouldBeNull("error");
// Invalid format for wrapKey
return crypto.subtle.wrapKey('bad-format', key, wrappingKey, wrapAlgorithm);
« no previous file with comments | « LayoutTests/crypto/unwrapKey-badParameters-expected.txt ('k') | LayoutTests/crypto/wrapKey-badParameters-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698