mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-01 13:28:39 +09:00
4 lines
181 B
JavaScript
4 lines
181 B
JavaScript
function ok(result, desc) {
|
|
window.parent.postMessage({ok: result, desc: desc}, "*");
|
|
}
|
|
ok(true, "documents sandboxed with allow-scripts should be able to run <script src=...>");
|