summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/xhr_original.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--devtools/client/netmonitor/test/xhr_original.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/devtools/client/netmonitor/test/xhr_original.js b/devtools/client/netmonitor/test/xhr_original.js
new file mode 100644
index 0000000000..8b480a0098
--- /dev/null
+++ b/devtools/client/netmonitor/test/xhr_original.js
@@ -0,0 +1,13 @@
+"use strict";
+
+function reallydoxhr() {
+ const z = new XMLHttpRequest();
+ z.open("get", "test-image.png", true);
+ z.send();
+}
+
+function doxhr() {
+ reallydoxhr();
+}
+
+window.doxhr = doxhr;