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

Unified Diff: LayoutTests/crypto/subtle/unwrapKey-badParameters.html

Issue 978353002: Add [TypeChecking=Unrestricted] to SubtleCrypto interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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/subtle/unwrapKey-badParameters.html
diff --git a/LayoutTests/crypto/subtle/unwrapKey-badParameters.html b/LayoutTests/crypto/subtle/unwrapKey-badParameters.html
index dfbbe6f0a58492e8978af4ba3f0292d8d4bff7b7..faa112905c7b63dd03c915431cc7d272307f00b3 100644
--- a/LayoutTests/crypto/subtle/unwrapKey-badParameters.html
+++ b/LayoutTests/crypto/subtle/unwrapKey-badParameters.html
@@ -41,7 +41,7 @@ importUnwrappingKey().then(function(result) {
logError(result);
// Invalid keyUsages (also, unwrappedKeyAlgorithm is set to null).
- return crypto.subtle.unwrapKey('raw', wrappedKey, 'hi', unwrapAlgorithm, null, extractable, 9);
+ return crypto.subtle.unwrapKey('raw', wrappedKey, unwrappingKey, unwrapAlgorithm, null, extractable, 9);
}).then(failAndFinishJSTest, function(result) {
logError(result);

Powered by Google App Engine
This is Rietveld 408576698