tenfourfox/dom/html/test/browser_bug1081537.js

12 lines
408 B
JavaScript
Raw Normal View History

2017-04-19 07:56:45 +00:00
// This test is useful because mochitest-browser runs as an addon, so we test
// addon-scope paths here.
var ifr;
function test() {
ifr = document.createElement('iframe');
document.getElementById('main-window').appendChild(ifr);
is(ifr.contentDocument.nodePrincipal.origin, "[System Principal]");
ifr.contentDocument.open();
ok(true, "Didn't throw");
}
registerCleanupFunction(() => ifr.remove());