summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/xhr_original.js
blob: 8b480a00984b7dffb8fe0024f4372c6b6bb85ac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict";

function reallydoxhr() {
  const z = new XMLHttpRequest();
  z.open("get", "test-image.png", true);
  z.send();
}

function doxhr() {
  reallydoxhr();
}

window.doxhr = doxhr;