LCOV - code coverage report
Current view: top level - test/wpt/xhr - event-abort.any.js (source / functions) Hit Total Coverage
Test: lcov.info Lines: 44 45 97.8 %
Date: 2024-12-07 00:20:21 Functions: 2 3 66.7 %
Branches: 3 3 100.0 %

           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 :  */

Generated by: LCOV version 1.14