blob: 5a45846db5d46a60df143271666241af18d7bc14 [file] [log] [blame] [edit]
addEventListener('error', function(event) {
event.preventDefault();
event.stopPropagation();
var result = event.error === 'Hello!' ? 0 : 1;
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://localhost:8888/report_result?' + result, true);
xhr.send();
});