| Index: LayoutTests/fast/js/Promise-static-resolve.html
|
| diff --git a/LayoutTests/fast/js/Promise-static-resolve.html b/LayoutTests/fast/js/Promise-static-resolve.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..984e93b0f1fadef6a308b98f9af0d0ef34fbe443
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/js/Promise-static-resolve.html
|
| @@ -0,0 +1,24 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<script src="resources/js-test-pre.js"></script>
|
| +</head>
|
| +<body>
|
| +<div id="description"></div>
|
| +<div id="console"></div>
|
| +<script>
|
| +description("Test Promise.");
|
| +
|
| +window.jsTestIsAsync = true;
|
| +value = undefined;
|
| +
|
| +Promise.resolve('hello').then(function(value) {
|
| + window.value = value;
|
| + shouldBeEqualToString("value", "hello");
|
| + finishJSTest();
|
| +});
|
| +shouldBe("value", "undefined");
|
| +</script>
|
| +<script src="resources/js-test-post.js"></script>
|
| +</body>
|
| +</html>
|
|
|