chromium/third_party/blink/web_tests/http/tests/devtools/sources/debugger-breakpoints/resources/set-breakpoint.html

<html>
<head>
<script>
function oneLineTestFunction() { return 0; }
</script>

<script>
function oneLineTestFunction2() { return 0; }</script>

<script>

function testFunction()
{
  var x = Math.sqrt(10);
  return x;
}

function scheduleTestFunction() {
  setTimeout(testFunction, 0);
}
</script>
</head>
</html>