blob: e4b871718c63d291058fc0b07b293f04d97f468f [file] [log] [blame]
function columnTest4()
{
var x=function(){setInterval(function(){})};
f = function()
{
console.log("column test 4");
// ^ breakpoint set here (5, 8)
}
f();
}
function columnTest5(){var x=function(){setInterval(function(){})};(function(){console.log("column test 5")})()}
// breakpoint set here ^ (11, 79)
// Any edits of this file will necessitate a change to the breakpoint (line, column) coordinates
// used in breakpoint-columns.html.
function runColumnTest4() { setTimeout(columnTest4, 0); }
function runColumnTest5() { setTimeout(columnTest5, 0); }