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