Branch data Line data Source code
1 [ + ]: 2 : import assert from 'node:assert/strict'; 2 : 2 : import { XMLHttpRequest } from '../../../lib/whatwg-xhr.js'; 3 : 2 : 4 [ + ]: 2 : export default (activeURL) => { 5 : 1 : 6 : 1 : let xhr = new XMLHttpRequest(); 7 : 1 : let timeout; 8 : 1 : 9 [ + ]: 1 : xhr.onabort = () => { 10 : 1 : clearTimeout(timeout); 11 : 1 : }; 12 : 1 : 13 : 1 : xhr.open('GET', `${activeURL}/well-formed.xml`); 14 : 1 : xhr.send(); 15 : 1 : 16 : 1 : timeout = setTimeout(() => { 17 : 0 : assert(false, 'onabort not called after 4 ms.'); 18 : 1 : }, 4); 19 : 1 : 20 : 1 : xhr.abort(); 21 : 1 : } 22 : 2 : 23 : 2 : /* 24 : 2 : * event-abort.any.js 25 : 2 : * 26 : 2 : 27 : 2 : // META: title=XMLHttpRequest: abort event 28 : 2 : 29 : 2 : var test = async_test(); 30 : 2 : test.step(function () { 31 : 2 : var client = new XMLHttpRequest(); 32 : 2 : client.onabort = test.step_func(function () { 33 : 2 : test.done(); 34 : 2 : }); 35 : 2 : client.open("GET", "resources/well-formed.xml"); 36 : 2 : client.send(null); 37 : 2 : client.abort(); 38 : 2 : test.step_timeout(() => { 39 : 2 : assert_unreached("onabort not called after 4 ms"); 40 : 2 : }, 4); 41 : 2 : }); 42 : 2 : 43 : 2 : * 44 : 2 : * event-abort.any.js 45 : 2 : */