blob: fe7c3eca2b372a71cf6350bd6577bd60f372c38f (
plain)
1
2
3
4
5
6
7
8
9
10
|
(() => {
const xhr = new XMLHttpRequest();
xhr.open('GET', '/common/dummy.xml');
xhr.addEventListener('load', () => {
const deadline = performance.now() + 360;
while (performance.now() < deadline) {
}
});
xhr.send();
})();
|