Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git] / js / xpconnect / tests / browser / browser_consoleStack.html
blob37bfdb32f68a643b0658c9f74ed7c4a08247dc3a
1 <!DOCTYPE HTML>
2 <html>
3 <!--
4 Test page for https://bugzilla.mozilla.org/show_bug.cgi?id=1471989
5 -->
6 <head>
7 <meta charset="utf-8">
8 <title>Test page for Bug 1471989</title>
9 </head>
10 <body onUnload="onUnload();">
11 <p><span id="samplepage">sample page</span></p>
12 <script type="application/javascript">
13 // Get something sent to ConsoleStorageAPI that has a stack.
14 console.trace("whatever");
16 function onUnload() {
17 console.log('in unload');
19 </script>
20 </body>
21 </html>