1
0
Fork 0
firefox/js/xpconnect/tests/browser/browser_consoleStack.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
476 B
HTML

<!DOCTYPE HTML>
<html>
<!--
Test page for https://bugzilla.mozilla.org/show_bug.cgi?id=1471989
-->
<head>
<meta charset="utf-8">
<title>Test page for Bug 1471989</title>
</head>
<body onUnload="onUnload();">
<p><span id="samplepage">sample page</span></p>
<script type="application/javascript">
// Get something sent to ConsoleStorageAPI that has a stack.
console.trace("whatever");
function onUnload() {
console.log('in unload');
}
</script>
</body>
</html>