mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
57 lines
2.1 KiB
JavaScript
57 lines
2.1 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
function test() {
|
|
/** Test for Bug 447951 **/
|
|
|
|
waitForExplicitFinish();
|
|
const baseURL = "http://mochi.test:8888/browser/" +
|
|
"browser/components/sessionstore/test/browser_447951_sample.html#";
|
|
|
|
let tab = gBrowser.addTab();
|
|
whenBrowserLoaded(tab.linkedBrowser, function() {
|
|
let tabState = { entries: [] };
|
|
let max_entries = gPrefService.getIntPref("browser.sessionhistory.max_entries");
|
|
for (let i = 0; i < max_entries; i++)
|
|
tabState.entries.push({ url: baseURL + i });
|
|
|
|
ss.setTabState(tab, JSON.stringify(tabState));
|
|
whenTabRestored(tab, function() {
|
|
tabState = JSON.parse(ss.getTabState(tab));
|
|
is(tabState.entries.length, max_entries, "session history filled to the limit");
|
|
is(tabState.entries[0].url, baseURL + 0, "... but not more");
|
|
|
|
// visit yet another anchor (appending it to session history)
|
|
let doc = tab.linkedBrowser.contentDocument;
|
|
let event = doc.createEvent("MouseEvents");
|
|
event.initMouseEvent("click", true, true, doc.defaultView, 1,
|
|
0, 0, 0, 0, false, false, false, false, 0, null);
|
|
doc.querySelector("a").dispatchEvent(event);
|
|
|
|
function check() {
|
|
tabState = JSON.parse(ss.getTabState(tab));
|
|
if (tabState.entries[tabState.entries.length - 1].url != baseURL + "end") {
|
|
// It may take a few passes through the event loop before we
|
|
// get the right URL.
|
|
executeSoon(check);
|
|
return;
|
|
}
|
|
|
|
is(tab.linkedBrowser.currentURI.spec, baseURL + "end",
|
|
"the new anchor was loaded");
|
|
is(tabState.entries[tabState.entries.length - 1].url, baseURL + "end",
|
|
"... and ignored");
|
|
is(tabState.entries[0].url, baseURL + 1,
|
|
"... and the first item was removed");
|
|
|
|
// clean up
|
|
gBrowser.removeTab(tab);
|
|
finish();
|
|
}
|
|
|
|
check();
|
|
});
|
|
});
|
|
}
|