Index: LayoutTests/fast/js/Promise-then-without-callbacks.html |
diff --git a/LayoutTests/fast/js/Promise-then-without-callbacks.html b/LayoutTests/fast/js/Promise-then-without-callbacks.html |
deleted file mode 100644 |
index 2389c3c79ef607c17572599e90d81e9cf86f677a..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/js/Promise-then-without-callbacks.html |
+++ /dev/null |
@@ -1,24 +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; |
- |
-new Promise(function(resolve) { resolve('hello'); }) |
- .then() |
- .then(function(result) { |
- window.result = result; |
- shouldBeEqualToString('result', 'hello'); |
- finishJSTest(); |
- }); |
- |
-</script> |
-</body> |
-</html> |