summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/xpcshell/data/file_script_xhr.js
blob: 24a26cb8d18ed82301ce44d2d661a18f6219c977 (plain)
1
2
3
4
5
6
7
8
9
"use strict";

var request = new XMLHttpRequest();
request.open(
  "get",
  "http://example.com/browser/toolkit/modules/tests/browser/xhr_resource",
  false
);
request.send();