summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/over-1-meg.any.js
blob: ad5831404e1f4d3ff14c046742cb2c76b63c62cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"use strict";

async_test(t => {
  const xhr = new XMLHttpRequest();
  xhr.open("GET", "./resources/over-1-meg.txt");

  xhr.addEventListener("load", t.step_func_done(() => {
    const result = xhr.responseText;
    const desiredResult = "abcd".repeat(290000);

    assert_equals(result.length, desiredResult.length); // to avoid large diffs if they are lengthwise different
    assert_equals(result, desiredResult);
  }));

  xhr.send();
});