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

Unified Diff: LayoutTests/crypto/subtle/ecdsa-generateKey-failures.html

Issue 957713004: [WebCrypto] Split LayoutTests/crypto/subtle into per-algorithm directories (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to latest master 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/ecdsa-generateKey-failures.html
diff --git a/LayoutTests/crypto/subtle/ecdsa-generateKey-failures.html b/LayoutTests/crypto/subtle/ecdsa-generateKey-failures.html
deleted file mode 100644
index ece46a5f96358038119bf828f3b690d9fbd1ce2a..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/subtle/ecdsa-generateKey-failures.html
+++ /dev/null
@@ -1,43 +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 generateKey() with bad ECDSA parameters.");
-jsTestIsAsync = true;
-
-extractable = true;
-keyUsages = ['sign', 'verify'];
-
-Promise.resolve(null).then(function() {
- debug("\ngenerateKey() without namedCurve...");
- return crypto.subtle.generateKey({name: 'ECDSA'}, extractable , keyUsages);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug("\ngenerateKey() with namedCurve that is an integer...");
- return crypto.subtle.generateKey({name: 'ECDSA', namedCurve: -1}, extractable , keyUsages);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug("\ngenerateKey() with namedCurve 'p-256' that contains lower case character 'p'...");
- return crypto.subtle.generateKey({name: 'ECDSA', namedCurve: 'p-256'}, extractable , keyUsages);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug("\ngenerateKey() with namedCurve 'P-256aa' that contains trailing characters 'aa'...");
- return crypto.subtle.generateKey({name: 'ECDSA', namedCurve: 'P-256aa'}, extractable , keyUsages);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-}).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698