Index: LayoutTests/fast/js/Promise-onFulfilled-deep.html |
diff --git a/LayoutTests/fast/js/Promise-onFulfilled-deep.html b/LayoutTests/fast/js/Promise-onFulfilled-deep.html |
deleted file mode 100644 |
index fce7702a697c8623ae3e3c44894969176b0962e8..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/js/Promise-onFulfilled-deep.html |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<div id="description"></div> |
-<div id="console"></div> |
-<script> |
-description('Test Promise.'); |
- |
-window.jsTestIsAsync = true; |
- |
-var result; |
-var resolve; |
-var promise = new Promise(function (r) { resolve = r; }); |
- |
-for (var i = 0; i < 5000; ++i) |
- promise = promise.then(function (value) { return value; }, function () { testFailed('rejected'); }); |
- |
-promise.then(function (value) { |
- window.result = value; |
- shouldBe('result', '42'); |
-}).then(finishJSTest, finishJSTest); |
- |
-shouldBe('result', 'undefined'); |
-resolve(42); |
- |
-</script> |
-</body> |
-</html> |