browser_consoleStack.html (476B)
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"); 15 16 function onUnload() { 17 console.log('in unload'); 18 } 19 </script> 20 </body> 21 </html>