mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-04 13:07:52 +00:00
351d147e2f
Differential Revision: https://phabricator.services.mozilla.com/D44149 --HG-- extra : moz-landing-system : lando
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
function ok(result, desc) {
|
|
window.parent.postMessage({ ok: result, desc }, "*");
|
|
}
|
|
ok(
|
|
false,
|
|
"documents sandboxed with allow-scripts should NOT be able to run <script src=...>"
|
|
);
|