browser_aboutOrigin.js (359B)
1 "use strict"; 2 3 let tests = ["about:robots?foo", "about:robots#foo", "about:robots?foo#bar"]; 4 tests.forEach(async test => { 5 add_task(async () => { 6 await BrowserTestUtils.withNewTab(test, async browser => { 7 await SpecialPowers.spawn(browser, [], () => { 8 is(content.document.nodePrincipal.origin, "about:robots"); 9 }); 10 }); 11 }); 12 });