Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /xhr/over-1-meg.any.html - WPT Dashboard Interop Dashboard
- /xhr/over-1-meg.any.worker.html - WPT Dashboard Interop Dashboard
"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();
});