This website requires JavaScript.
Explore
Help
Sign In
wine
/
gecko
Watch
0
Star
0
Fork
0
You've already forked gecko
mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced
2024-09-13 09:24:08 -07:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
b29705c2fd
gecko
/
browser
/
devtools
/
debugger
/
test
/
code_breakpoints-break-on-last-line-of-script-on-reload.js
7 lines
85 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Bug 981258 - Set the breakpoints in browser_dbg_breakpoints-break-on-last-line-of-script-on-reload.js before executng the IIFE so that the IIFE's Debugger.Script can't be GC'd before the breakpoints are set; r=past
2014-03-15 18:48:55 -07:00
debugger
;
Bug 978019 - Fix breakpoints after reload on immediately invoked function expressions; r=past
2014-03-07 11:06:28 -08:00
var
a
=
(
function
(
)
{
var
b
=
9
;
console
.
log
(
"x"
,
b
)
;
return
b
;
}
)
(
)
;
Reference in New Issue
Copy Permalink