mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
dd67c63a14
--HG-- rename : browser/devtools/debugger/debugger.js => browser/devtools/debugger/debugger-controller.js
33 lines
546 B
HTML
33 lines
546 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head><meta charset='utf-8'/><title>Browser Debugger Test Tab</title>
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
<script type="text/javascript">
|
|
|
|
function simpleCall() {
|
|
debugger;
|
|
}
|
|
|
|
function evalCall() {
|
|
eval("debugger;");
|
|
}
|
|
|
|
var gRecurseLimit = 100;
|
|
var gRecurseDepth = 0;
|
|
function recurse() {
|
|
if (++gRecurseDepth == gRecurseLimit) {
|
|
debugger;
|
|
gRecurseDepth = 0;
|
|
return;
|
|
}
|
|
recurse();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body></body>
|
|
|
|
</html>
|