Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / webrequest / xhr / a.js
blob70b40e1ca3a68630c7f3da7a4d599552167afead
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 function sendXHR() {
6 var req = new XMLHttpRequest();
7 req.open("GET", "data.json", true);
8 req.send(null);
11 window.onload = function() {
12 sendXHR();