blob: fe7c3eca2b372a71cf6350bd6577bd60f372c38f [file] [log] [blame]
(() => {
const xhr = new XMLHttpRequest();
xhr.open('GET', '/common/dummy.xml');
xhr.addEventListener('load', () => {
const deadline = performance.now() + 360;
while (performance.now() < deadline) {
}
});
xhr.send();
})();