Home | History | Annotate | Download | only in playback_benchmark

Lines Matching refs:xmlHttpRequest

16   ['XMLHttpRequest', 'XMLHttpRequest'],
21 ['XMLHttpRequest', 'prototype']],
60 XMLHttpRequest: function() {
195 * window.XMLHttpRequest wrapper. Notifies Benchmark.agent when request is
200 this.request = new Benchmark.originals.XMLHttpRequest();
207 var request = new Benchmark.originals.XMLHttpRequest();
212 var f = Benchmark.originals.XMLHttpRequest.prototype[property];
247 * Wrapper for XMLHttpRequest.open.
256 Benchmark.originals.XMLHttpRequest.prototype.open.apply(request, arguments);
268 * Wrapper for XMLHttpRequest.abort.
272 Benchmark.originals.XMLHttpRequest.prototype.abort.apply(
289 var xmlHttpRequest = new Benchmark.originals.XMLHttpRequest();
290 xmlHttpRequest.open("POST", Benchmark.DRIVER_URL, async);
291 xmlHttpRequest.setRequestHeader("Content-type", "application/json");
292 xmlHttpRequest.send(JSON.stringify(request));