Revert "Bug 1938967 - Part 2: Use relative paths within Taskbar Tabs to create shortcuts. r=nrishel,fluent-reviewers,bolsson" for causing bc failures @ browser_createWindowsShortcut.js
This reverts commit 76c91e29a4310104f82d32ce50de9faf027c34f5.
Revert "Bug 1938967 - Part 1: Allow shortcuts to be located in subdirectories of the Start menu or desktop. r=nrishel"
This reverts commit 17f3a92d47e36c8a879be8d0bf1777cbcb72dc91.
<!DOCTYPE HTML><html><!--https://bugzilla.mozilla.org/show_bug.cgi?id=766282implement allow-popups directive for iframe sandbox--><head><metacharset="utf-8"><title>Tests for Bug 766282</title><scriptsrc="/tests/SimpleTest/SimpleTest.js"></script><scriptsrc="/tests/SimpleTest/EventUtils.js"></script><linkrel="stylesheet"type="text/css"href="/tests/SimpleTest/test.css"/></head><scripttype="application/javascript">SimpleTest.waitForExplicitFinish();// a postMessage handler that is used by sandboxed iframes without// 'allow-same-origin' to communicate pass/fail back to this main page.// it expects to be called with an object like {ok: true/false, desc:// <description of the test> which it then forwards to ok()window.addEventListener("message",receiveMessage);functionreceiveMessage(event){ok_wrapper(event.data.ok,event.data.desc);}varcompletedTests=0;varpassedTests=0;functionok_wrapper(result,desc){ok(result,desc);completedTests++;if(result){passedTests++;}if(completedTests==3){is(passedTests,completedTests,"There are "+completedTests+" popups tests that should pass");SimpleTest.finish();}}functiondoTest(){// passes if good// 1) Test that a sandboxed iframe with "allow-popups" can open a new window using the target.attribute.// This is done via file_iframe_sandbox_h_if1.html which is sandboxed with "allow-popups allow-scripts allow-same-origin".// The window it attempts to open calls window.opener.ok(true, ...) and file_iframe_h_if1.html has an ok()// function that calls window.parent.ok_wrapper.// passes if good// 2) Test that a sandboxed iframe with "allow-popups" can open a new window using window.open.// This is done via file_iframe_sandbox_h_if1.html which is sandboxed with "allow-popups allow-scripts allow-same-origin".// The window it attempts to open calls window.opener.ok(true, ...) and file_iframe_h_if1.html has an ok()// function that calls window.parent.ok_wrapper.// passes if good, fails if bad// 3) Test that a sandboxed iframe with "allow-popups" can open a new window using the target.attribute// for a non-existing browsing context (BC766282).// This is done via file_iframe_sandbox_h_if1.html which is sandboxed with "allow-popups allow-scripts allow-same-origin".// The window it attempts to open calls window.opener.ok(true, ...) and file_iframe_h_if1.html has an ok()// function that calls window.parent.ok_wrapper.}addLoadEvent(doTest);</script><body><atarget="_blank"href="https://bugzilla.mozilla.org/show_bug.cgi?id=766282">Mozilla Bug 766282</a> - implement allow-popups directive for iframe sandbox<pid="display"></p><divid="content"><iframesandbox="allow-popups allow-same-origin allow-scripts"id="if1"src="file_iframe_sandbox_h_if1.html"height="10"width="10"></iframe></div></body></html>