summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/doc-inline-script-offset.html
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/debugger/test/mochitest/examples/doc-inline-script-offset.html')
-rw-r--r--devtools/client/debugger/test/mochitest/examples/doc-inline-script-offset.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/examples/doc-inline-script-offset.html b/devtools/client/debugger/test/mochitest/examples/doc-inline-script-offset.html
new file mode 100644
index 0000000000..be0836c433
--- /dev/null
+++ b/devtools/client/debugger/test/mochitest/examples/doc-inline-script-offset.html
@@ -0,0 +1,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>