| Index: LayoutTests/crypto/subtle/aes-ctr-generateKey-failures.html
 | 
| diff --git a/LayoutTests/crypto/subtle/aes-ctr-generateKey-failures.html b/LayoutTests/crypto/subtle/aes-ctr-generateKey-failures.html
 | 
| deleted file mode 100644
 | 
| index 70be7cb350ac41a20496edc484db087f3b6286e5..0000000000000000000000000000000000000000
 | 
| --- a/LayoutTests/crypto/subtle/aes-ctr-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 AES-CTR parameters.");
 | 
| -jsTestIsAsync = true;
 | 
| -
 | 
| -extractable = true;
 | 
| -keyUsages = ['encrypt', 'decrypt'];
 | 
| -
 | 
| -Promise.resolve(null).then(function() {
 | 
| -    debug("\ngenerateKey() without length...");
 | 
| -    return crypto.subtle.generateKey({ name: 'aes-ctr' }, extractable, keyUsages);
 | 
| -}).then(failAndFinishJSTest, function(result) {
 | 
| -    logError(result);
 | 
| -
 | 
| -    debug("\ngenerateKey() with a length of 70000...");
 | 
| -    return crypto.subtle.generateKey({ name: 'aes-ctr', length: 70000 }, extractable, keyUsages);
 | 
| -}).then(failAndFinishJSTest, function(result) {
 | 
| -    logError(result);
 | 
| -
 | 
| -    debug("\ngenerateKey() with a length of -3...");
 | 
| -    return crypto.subtle.generateKey({ name: 'aes-ctr', length: -3 }, extractable, keyUsages);
 | 
| -}).then(failAndFinishJSTest, function(result) {
 | 
| -    logError(result);
 | 
| -
 | 
| -    debug("\ngenerateKey() with length that is minus Infinity...");
 | 
| -    return crypto.subtle.generateKey({ name: 'aes-ctr', length: -Infinity }, extractable, keyUsages);
 | 
| -}).then(failAndFinishJSTest, function(result) {
 | 
| -    logError(result);
 | 
| -}).then(finishJSTest, failAndFinishJSTest);
 | 
| -
 | 
| -</script>
 | 
| -
 | 
| -</body>
 | 
| -</html>
 | 
| 
 |