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

Unified Diff: LayoutTests/crypto/unwrapKey-lacks-usage.html

Issue 806913006: [WebCrypto] Move LayoutTests from crypto to crypto/subtle (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update path for deserialize legacy tests 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/unwrapKey-lacks-usage.html
diff --git a/LayoutTests/crypto/unwrapKey-lacks-usage.html b/LayoutTests/crypto/unwrapKey-lacks-usage.html
deleted file mode 100644
index 034b95cbbe6c2819746a4520d7b52fb700948d0e..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/unwrapKey-lacks-usage.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../resources/js-test.js"></script>
-<script src="resources/common.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-
-<script>
-description("Tests that unwrapping keys must have the 'unwrapKey' usage.");
-
-jsTestIsAsync = true;
-
-function importUnwrappingKey()
-{
- var data = new Uint8Array(16);
- var extractable = true;
- var keyUsages = ['decrypt'];
-
- return crypto.subtle.importKey('raw', data, {name: 'AES-CBC'}, extractable, keyUsages);
-}
-
-importUnwrappingKey().then(function(result) {
- wrappedKey = new Uint8Array(100);
- unwrappingKey = result;
- unwrapAlgorithm = {name: 'aes-cbc', iv: new Uint8Array(16)};
- unwrappedKeyAlgorithm = unwrapAlgorithm;
- extractable = true;
- keyUsages = ['encrypt'];
-
- return crypto.subtle.unwrapKey('raw', wrappedKey, unwrappingKey, unwrapAlgorithm, unwrappedKeyAlgorithm, extractable, keyUsages);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-}).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/crypto/unwrapKey-badParameters-expected.txt ('k') | LayoutTests/crypto/unwrapKey-lacks-usage-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698