2009-09-01 09:45:05 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is sessionstore test code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Justin Lebar <justin.lebar@gmail.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
function checkState(tab) {
|
|
|
|
// Go back and then forward, and make sure that the state objects received
|
|
|
|
// from the popState event are as we expect them to be.
|
|
|
|
//
|
|
|
|
// We also add a node to the document's body when after going back and make
|
|
|
|
// sure it's still there after we go forward -- this is to test that the two
|
|
|
|
// history entries correspond to the same document.
|
|
|
|
|
|
|
|
let popStateCount = 0;
|
|
|
|
|
2011-04-20 14:09:57 -07:00
|
|
|
tab.linkedBrowser.addEventListener('popstate', function(aEvent) {
|
2009-09-01 09:45:05 -07:00
|
|
|
let contentWindow = tab.linkedBrowser.contentWindow;
|
|
|
|
if (popStateCount == 0) {
|
|
|
|
popStateCount++;
|
2011-04-20 14:09:57 -07:00
|
|
|
|
|
|
|
is(tab.linkedBrowser.contentWindow.testState, 'foo',
|
|
|
|
'testState after going back');
|
|
|
|
|
|
|
|
ok(aEvent.state, "Event should have a state property.");
|
2011-02-28 23:08:56 -08:00
|
|
|
is(JSON.stringify(tab.linkedBrowser.contentWindow.history.state), JSON.stringify({obj1:1}),
|
2009-09-01 09:45:05 -07:00
|
|
|
"first popstate object.");
|
|
|
|
|
|
|
|
// Add a node with id "new-elem" to the document.
|
|
|
|
let doc = contentWindow.document;
|
|
|
|
ok(!doc.getElementById("new-elem"),
|
|
|
|
"doc shouldn't contain new-elem before we add it.");
|
|
|
|
let elem = doc.createElement("div");
|
|
|
|
elem.id = "new-elem";
|
|
|
|
doc.body.appendChild(elem);
|
|
|
|
|
|
|
|
contentWindow.history.forward();
|
|
|
|
}
|
|
|
|
else if (popStateCount == 1) {
|
|
|
|
popStateCount++;
|
2011-04-24 19:30:54 -07:00
|
|
|
is(aEvent.state.obj3.toString(), '/^a$/', "second popstate object.");
|
2009-09-01 09:45:05 -07:00
|
|
|
|
|
|
|
// Make sure that the new-elem node is present in the document. If it's
|
|
|
|
// not, then this history entry has a different doc identifier than the
|
|
|
|
// previous entry, which is bad.
|
|
|
|
let doc = contentWindow.document;
|
|
|
|
let newElem = doc.getElementById("new-elem");
|
|
|
|
ok(newElem, "doc should contain new-elem.");
|
|
|
|
newElem.parentNode.removeChild(newElem);
|
|
|
|
ok(!doc.getElementById("new-elem"), "new-elem should be removed.");
|
|
|
|
|
|
|
|
// Clean up after ourselves and finish the test.
|
2011-03-14 16:44:59 -07:00
|
|
|
tab.linkedBrowser.removeEventListener("popstate", arguments.callee, true);
|
2009-09-01 09:45:05 -07:00
|
|
|
gBrowser.removeTab(tab);
|
|
|
|
finish();
|
|
|
|
}
|
2011-04-20 14:09:57 -07:00
|
|
|
}, true);
|
2011-02-28 23:08:56 -08:00
|
|
|
|
2011-04-20 14:09:57 -07:00
|
|
|
// Set some state in the page's window. When we go back(), the page should
|
|
|
|
// be retrieved from bfcache, and this state should still be there.
|
|
|
|
tab.linkedBrowser.contentWindow.testState = 'foo';
|
2009-09-01 09:45:05 -07:00
|
|
|
|
2011-04-20 14:09:57 -07:00
|
|
|
// Now go back. This should trigger the popstate event handler above.
|
2009-09-01 09:45:05 -07:00
|
|
|
tab.linkedBrowser.contentWindow.history.back();
|
|
|
|
}
|
|
|
|
|
|
|
|
function test() {
|
|
|
|
// Tests session restore functionality of history.pushState and
|
|
|
|
// history.replaceState(). (Bug 500328)
|
|
|
|
|
|
|
|
waitForExplicitFinish();
|
|
|
|
|
|
|
|
// We open a new blank window, let it load, and then load in
|
|
|
|
// http://example.com. We need to load the blank window first, otherwise the
|
|
|
|
// docshell gets confused and doesn't have a current history entry.
|
|
|
|
let tab = gBrowser.addTab("about:blank");
|
|
|
|
let tabBrowser = tab.linkedBrowser;
|
|
|
|
|
|
|
|
tabBrowser.addEventListener("load", function(aEvent) {
|
|
|
|
tabBrowser.removeEventListener("load", arguments.callee, true);
|
|
|
|
|
|
|
|
tabBrowser.loadURI("http://example.com", null, null);
|
|
|
|
|
|
|
|
tabBrowser.addEventListener("load", function(aEvent) {
|
|
|
|
tabBrowser.removeEventListener("load", arguments.callee, true);
|
|
|
|
|
|
|
|
// After these push/replaceState calls, the window should have three
|
|
|
|
// history entries:
|
2011-10-21 08:26:34 -07:00
|
|
|
// testURL (state object: null) <-- oldest
|
|
|
|
// testURL (state object: {obj1:1})
|
|
|
|
// testURL?page2 (state object: {obj3:/^a$/}) <-- newest
|
2009-09-01 09:45:05 -07:00
|
|
|
let contentWindow = tab.linkedBrowser.contentWindow;
|
|
|
|
let history = contentWindow.history;
|
|
|
|
history.pushState({obj1:1}, "title-obj1");
|
2011-10-21 08:26:34 -07:00
|
|
|
history.pushState({obj2:2}, "title-obj2", "?page2");
|
2011-04-24 19:30:54 -07:00
|
|
|
history.replaceState({obj3:/^a$/}, "title-obj3");
|
2009-09-01 09:45:05 -07:00
|
|
|
|
|
|
|
let state = ss.getTabState(tab);
|
2011-04-20 14:09:57 -07:00
|
|
|
gBrowser.removeTab(tab);
|
2009-09-01 09:45:05 -07:00
|
|
|
|
2011-04-20 14:09:57 -07:00
|
|
|
// Restore the state into a new tab. Things don't work well when we
|
|
|
|
// restore into the old tab, but that's not a real use case anyway.
|
|
|
|
let tab2 = gBrowser.addTab("about:blank");
|
|
|
|
ss.setTabState(tab2, state, true);
|
|
|
|
|
|
|
|
// Run checkState() once the tab finishes loading its restored state.
|
|
|
|
tab2.linkedBrowser.addEventListener("load", function() {
|
|
|
|
tab2.linkedBrowser.removeEventListener("load", arguments.callee, true);
|
|
|
|
SimpleTest.executeSoon(function() {
|
|
|
|
checkState(tab2);
|
|
|
|
});
|
|
|
|
}, true);
|
2009-09-01 09:45:05 -07:00
|
|
|
|
|
|
|
}, true);
|
|
|
|
}, true);
|
|
|
|
}
|