31 lines
732 B
HTML
31 lines
732 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Empty page</title>
|
|
<script>
|
|
function throwError() {
|
|
let foo = {};
|
|
foo.click();
|
|
}
|
|
|
|
function runLogParent() {
|
|
function runLogCaller() {
|
|
console.trace("foo");
|
|
}
|
|
|
|
function runLogChild() {
|
|
runLogCaller();
|
|
}
|
|
|
|
runLogChild();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<a id="console-log" href="javascript:console.log('foo')">console.log()</a><br/>
|
|
<a id="console-error" href="javascript:console.error('foo')">console.error()</a><br/>
|
|
<a id="js-error" onclick="throwError()">Javascript Error</a><br/>
|
|
<a id="log-wrapper" onclick="runLogParent()">console.log() in function wrappers</a><br/>
|
|
</body>
|
|
</html>
|