2014-11-17 12:44:00 +03:00
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Bug 1084065 - Sanity test for interaction between DOM promises and
|
|
|
|
Debugger.prototype.onPromiseResolved.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Test for interaction with SpiderMonkey's Debugger.prototype.onNewPromise</title>
|
|
|
|
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<pre id="test">
|
|
|
|
<script type="application/javascript">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
is(Object.prototype.toString.call(new Promise(function () {})),
|
|
|
|
"[object Promise]",
|
|
|
|
"We should have the native DOM promise implementation.");
|
|
|
|
|
2019-01-17 21:18:31 +03:00
|
|
|
const {addDebuggerToGlobal} = ChromeUtils.import("resource://gre/modules/jsdebugger.jsm");
|
2018-12-23 00:39:56 +03:00
|
|
|
var dbgGlobal = new Cu.Sandbox(document.nodePrincipal,
|
|
|
|
{freshCompartment: true});
|
2014-11-17 12:44:00 +03:00
|
|
|
addDebuggerToGlobal(dbgGlobal);
|
|
|
|
var dbg = new dbgGlobal.Debugger(this);
|
|
|
|
|
|
|
|
var wrappedPromise;
|
|
|
|
dbg.onPromiseSettled = function (wp) { wrappedPromise = wp; };
|
|
|
|
|
|
|
|
var promise = Promise.resolve();
|
|
|
|
promise
|
|
|
|
.then(function () {
|
|
|
|
ok(wrappedPromise);
|
|
|
|
is(wrappedPromise.unsafeDereference(), promise);
|
|
|
|
dbg.onPromiseSettled = undefined;
|
|
|
|
})
|
2017-06-19 13:32:37 +03:00
|
|
|
.catch(function (e) {
|
2014-11-17 12:44:00 +03:00
|
|
|
ok(false, "Got an unexpected error: " + e);
|
|
|
|
})
|
|
|
|
.then(SimpleTest.finish);
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|