haikuwebkit/LayoutTests/js/dom/Promise-already-rejected.html

31 lines
584 B
HTML

<!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;
new Promise(function(resolve, reject) {
reject('foo');
resolve('resolve');
reject('reject');
}).then(function() {
testFailed('fulfilled');
finishJSTest();
}, function(result) {
window.result = result;
shouldBeEqualToString('result', 'foo');
finishJSTest();
});
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>