mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-12-29 02:31:05 +00:00
31 lines
629 B
HTML
31 lines
629 B
HTML
<!DOCTYPE HTML>
|
|
<html dir="ltr" lang="en">
|
|
<head>
|
|
<meta charset="utf8">
|
|
<!--
|
|
- Any copyright is dedicated to the Public Domain.
|
|
- http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<title>Test for bug 1184172 - stacktraces for exceptions</title>
|
|
<script>
|
|
function firstCall() {
|
|
secondCall();
|
|
}
|
|
|
|
// Check anonymous functions
|
|
var secondCall = function () {
|
|
thirdCall();
|
|
}
|
|
|
|
function thirdCall() {
|
|
nonExistingMethodCall();
|
|
}
|
|
|
|
window.onload = firstCall;
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>Hello world!</p>
|
|
</body>
|
|
</html>
|