mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-27 01:38:39 +09:00
5 lines
162 B
JavaScript
5 lines
162 B
JavaScript
var id = 0;
|
|
try {
|
|
id = setTimeout("postMessage('handler invoked')", 100);
|
|
} catch (e) {}
|
|
postMessage(id === 0 ? "setTimeout blocked" : "setTimeout allowed");
|