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

Unified Diff: LayoutTests/crypto/digest-failures.html

Issue 806913006: [WebCrypto] Move LayoutTests from crypto to crypto/subtle (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/digest-failures.html
diff --git a/LayoutTests/crypto/digest-failures.html b/LayoutTests/crypto/digest-failures.html
deleted file mode 100644
index a9b50a09b155979ed2a33ff005c1ec40ad749099..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/digest-failures.html
+++ /dev/null
@@ -1,53 +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 incorrect calls to crypto.subtle.digest()");
-
-jsTestIsAsync = true;
-
-Promise.resolve(null).then(function(result) {
- // Called with too few parameters.
- return crypto.subtle.digest({name: 'sha-1'});
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // "null" is not a valid data argument.
- return crypto.subtle.digest({name: 'sha-1'}, null);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // 10 is not a valid data argument.
- return crypto.subtle.digest({name: 'sha-1'}, 10);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // null is not a valid algorithm argument.
- data = new Uint8Array([0]);
- return crypto.subtle.digest(null, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // "sha" is not a recognized algorithm name
- return crypto.subtle.digest({name: 'sha'}, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Algorithm lacks a name.
- return crypto.subtle.digest({}, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
-}).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698