mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 856410 - Implement futures - Part 6: Additional tests. r=mounir
This commit is contained in:
parent
f052055eac
commit
4d2d31c412
@ -13,6 +13,7 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MOCHITEST_FILES = \
|
||||
test_future.html \
|
||||
test_resolve.html \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
67
dom/future/tests/test_resolve.html
Normal file
67
dom/future/tests/test_resolve.html
Normal file
@ -0,0 +1,67 @@
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<title>Future.resolve(anything) Test</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script type="application/javascript"><!--
|
||||
|
||||
var tests = [
|
||||
null,
|
||||
42,
|
||||
"hello world",
|
||||
true,
|
||||
false,
|
||||
{},
|
||||
{ a: 42 },
|
||||
[ 1, 2, 3, 4, null, true, "hello world" ],
|
||||
function() {},
|
||||
window,
|
||||
undefined,
|
||||
document.createElement('input'),
|
||||
new Date(),
|
||||
];
|
||||
|
||||
function cbError() {
|
||||
ok(false, "Nothing should arrive here!");
|
||||
}
|
||||
|
||||
function runTest() {
|
||||
if (!tests.length) {
|
||||
SimpleTest.finish();
|
||||
return;
|
||||
}
|
||||
|
||||
var test = tests.pop();
|
||||
|
||||
new Future(function(resolver) {
|
||||
resolver.resolve(test);
|
||||
}).then(function(what) {
|
||||
ok(test === what, "What is: " + what);
|
||||
}, cbError).done(function() {
|
||||
new Future(function(resolver) {
|
||||
resolver.reject(test)
|
||||
}).then(cbError, function(what) {
|
||||
ok(test === what, "What is: " + what);
|
||||
}).done(runTest, cbError);
|
||||
});
|
||||
}
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
SpecialPowers.pushPrefEnv({"set": [["dom.future.enabled", true]]}, runTest);
|
||||
// -->
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user