chromium/third_party/blink/web_tests/http/tests/devtools/sources/debugger-step/resources/debugger-step-over-inlined-scripts.html

<html>
<head>

<script>
function f1()
{
    return 1; // Breakpoint.
}
f1();
</script>

<script>
function f2()
{
    return 2;
}
f2();
</script>
</head>
</html>