1
0
Fork 0
firefox/docshell/test/browser/browser_bug1719178.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

34 lines
952 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
SimpleTest.requestFlakyTimeout(
"The test needs to let objects die asynchronously."
);
add_task(async function test_accessing_shistory() {
let tab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
"about:preferences"
);
let sh = tab.linkedBrowser.browsingContext.sessionHistory;
ok(sh, "Should have SessionHistory object");
gBrowser.removeTab(tab);
tab = null;
for (let i = 0; i < 5; ++i) {
SpecialPowers.Services.obs.notifyObservers(
null,
"memory-pressure",
"heap-minimize"
);
SpecialPowers.DOMWindowUtils.garbageCollect();
await new Promise(function (r) {
// eslint-disable-next-line mozilla/no-arbitrary-setTimeout
setTimeout(r, 50);
});
}
try {
sh.reloadCurrentEntry();
} catch (ex) {}
ok(true, "This test shouldn't crash.");
});