michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: // That's a gecko! michael@0: const iconURLSpec = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHWSURBVHjaYvz//z8DJQAggJiQOe/fv2fv7Oz8rays/N+VkfG/iYnJfyD/1+rVq7ffu3dPFpsBAAHEAHIBCJ85c8bN2Nj4vwsDw/8zQLwKiO8CcRoQu0DxqlWrdsHUwzBAAIGJmTNnPgYa9j8UqhFElwPxf2MIDeIrKSn9FwSJoRkAEEAM0DD4DzMAyPi/G+QKY4hh5WAXGf8PDQ0FGwJ22d27CjADAAIIrLmjo+MXA9R2kAHvGBA2wwx6B8W7od6CeQcggKCmCEL8bgwxYCbUIGTDVkHDBia+CuotgACCueD3TDQN75D4xmAvCoK9ARMHBzAw0AECiBHkAlC0Mdy7x9ABNA3obAZXIAa6iKEcGlMVQHwWyjYuL2d4v2cPg8vZswx7gHyAAAK7AOif7SAbOqCmn4Ha3AHFsIDtgPq/vLz8P4MSkJ2W9h8ggBjevXvHDo4FQUQg/kdypqCg4H8lUIACnQ/SOBMYI8bAsAJFPcj1AAEEjwVQqLpAbXmH5BJjqI0gi9DTAAgDBBCcAVLkgmQ7yKCZxpCQxqUZhAECCJ4XgMl493ug21ZD+aDAXH0WLM4A9MZPXJkJIIAwTAR5pQMalaCABQUULttBGCCAGCnNzgABBgAMJ5THwGvJLAAAAABJRU5ErkJggg=="; michael@0: var testPage="data:text/plain,test bug 477014"; michael@0: michael@0: function test() { michael@0: waitForExplicitFinish(); michael@0: michael@0: var newWindow; michael@0: var tabToDetach; michael@0: var documentToDetach; michael@0: michael@0: function onPageShow(event) { michael@0: // we get here if the test is executed before the pageshow michael@0: // event for the window's first tab michael@0: if (!tabToDetach || documentToDetach != event.target) michael@0: return; michael@0: michael@0: event.currentTarget.removeEventListener("pageshow", onPageShow, false); michael@0: michael@0: if (!newWindow) { michael@0: // prepare the tab (set icon and busy state) michael@0: // we have to set these only after onState* notification, otherwise michael@0: // they're overriden michael@0: setTimeout(function() { michael@0: gBrowser.setIcon(tabToDetach, iconURLSpec); michael@0: tabToDetach.setAttribute("busy", "true"); michael@0: michael@0: // detach and set the listener on the new window michael@0: newWindow = gBrowser.replaceTabWithWindow(tabToDetach); michael@0: // wait for gBrowser to come along michael@0: newWindow.addEventListener("load", function () { michael@0: newWindow.removeEventListener("load", arguments.callee, false); michael@0: newWindow.gBrowser.addEventListener("pageshow", onPageShow, false); michael@0: }, false); michael@0: }, 0); michael@0: return; michael@0: } michael@0: michael@0: is(newWindow.gBrowser.selectedTab.hasAttribute("busy"), true); michael@0: is(newWindow.gBrowser.getIcon(), iconURLSpec); michael@0: newWindow.close(); michael@0: finish(); michael@0: } michael@0: michael@0: tabToDetach = gBrowser.addTab(testPage); michael@0: tabToDetach.linkedBrowser.addEventListener("load", function onLoad() { michael@0: tabToDetach.linkedBrowser.removeEventListener("load", onLoad, true); michael@0: documentToDetach = tabToDetach.linkedBrowser.contentDocument; michael@0: gBrowser.addEventListener("pageshow", onPageShow, false); michael@0: }, true); michael@0: }