repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Switch TestFrameNavigationObserver to DidCommitProvisionalLoadForFrame.
[chromium-blink-merge.git]
/
chrome
/
test
/
data
/
devtools
/
pause_when_loading_devtools.html
blob
3cd39e195e4f2bdc0b65847dd1296b187593d902
1
<html>
2
<head>
3
<script>
4
5
// Try to call debugger in loop so that pause event happens
6
// during DevTools frontend load.
7
function
callDebugger
() {
8
debugger
;
9
setTimeout
(
callDebugger
,
0
);
10
}
11
12
</script>
13
</head>
14
<body
onload='callDebugger()'
>
15
Call debugger repeatedly.
16
</body>
17
</html>