summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/doc_promise-get-allocation-stack.html
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/debugger/test/mochitest/doc_promise-get-allocation-stack.html')
-rw-r--r--devtools/client/debugger/test/mochitest/doc_promise-get-allocation-stack.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/doc_promise-get-allocation-stack.html b/devtools/client/debugger/test/mochitest/doc_promise-get-allocation-stack.html
new file mode 100644
index 000000000..48546c967
--- /dev/null
+++ b/devtools/client/debugger/test/mochitest/doc_promise-get-allocation-stack.html
@@ -0,0 +1,24 @@
+<!-- Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ -->
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <meta charset="utf-8"/>
+ <title>Promise test page</title>
+ </head>
+
+ <body>
+ <script type="text/javascript">
+ function makePromises() {
+ var p = new Promise(() => {});
+ p.name = "p";
+ var q = p.then();
+ q.name = "q";
+ var r = p.then(null, () => {});
+ r.name = "r";
+ }
+ </script>
+ </body>
+
+</html>