910e62b5创建于 1月15日历史提交
<html>
<head>
<script>

// Try to call debugger in loop so that pause event happens
// during DevTools frontend load.
function callDebugger() {
  debugger;
  setTimeout(callDebugger, 0);
}

</script>
</head>
<body onload='callDebugger()'>
Call debugger repeatedly.
</body>
</html>