Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

  • This test gets skipped with pattern: os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt && condprof OR os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11' && opt && condprof OR os == 'win' && os_version == '11.26100' && processor == 'x86_64' && opt && condprof
  • Manifest: browser/components/sessionstore/test/unit/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
// Test SessionStartup.sessionType in the following scenario:
// - no sessionstore.js;
// - the session store has been loaded, so no need to go
// through the synchronous fallback
function run_test() {
// Initialize the profile (the session startup uses it)
do_get_profile();
do_test_pending();
afterSessionStartupInitialization(function cb() {
Assert.equal(SessionStartup.sessionType, SessionStartup.NO_SESSION);
do_test_finished();
});
}