forked from mirrors/gecko-dev
21 lines
646 B
HTML
21 lines
646 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head> <meta charset="utf-8"> </head>
|
|
<script type="text/javascript">
|
|
function ok(result, desc) {
|
|
window.parent.postMessage({ok: result, desc: desc}, "*");
|
|
}
|
|
function doStuff() {
|
|
var beforePrincipal = SpecialPowers.wrap(document).nodePrincipal;
|
|
document.open();
|
|
document.write("rewritten sandboxed document");
|
|
document.close();
|
|
var afterPrincipal = SpecialPowers.wrap(document).nodePrincipal;
|
|
ok(beforePrincipal.equals(afterPrincipal),
|
|
"document.write() does not change underlying principal");
|
|
}
|
|
</script>
|
|
<body onLoad='doStuff();'>
|
|
sandboxed with allow-scripts
|
|
</body>
|
|
</html>
|