summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/doc-inline-script-offset.html
blob: be0836c4330a85edb3fc90e629971cf1205bae13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
function f() {
  return { g: () => {} };
}
</script>
<!-- evaluate the same long script to slow down the page load and more easily cause race condition in inline script code -->
<script src="long.js"></script><script src="long.js"></script><script src="long.js"></script><script src="long.js"></script>

<script>
function j() {
  return 42;
}
</script>

<span>Here is some random stuff</span><script>function z() { this.f().g() } z();</script>