blob: c73b604f6dcabb4b0c6247f53a524c05c6344194 (
plain)
1
2
3
4
5
6
7
|
(function() {
busy_wait(60);
Promise.resolve().then(busy_wait);
new URLSearchParams([["a", "hello"]]).forEach((value, key) => {
document.querySelector("#dummy").innerText += value;
});
})();
|