Revision control
Copy as Markdown
Other Tools
/* Any copyright is dedicated to the Public Domain.
// Test that sessionrestore handles cycles in the shentry graph properly.
//
// These cycles shouldn't be there in the first place, but they cause hangs
// graph is a tree and tires to walk to the root. But if there's a cycle,
// there is no root, and we loop forever.
var stateBackup = ss.getBrowserState();
var state = {windows:[{tabs:[{entries:[
{
docIdentifier: 1,
children: [
{
docIdentifier: 2,
}
]
},
{
docIdentifier: 2,
children: [
{
docIdentifier: 1,
}
]
}
]}]}]}
function test() {
registerCleanupFunction(function () {
ss.setBrowserState(stateBackup);
});
/* This test fails by hanging. */
ss.setBrowserState(JSON.stringify(state));
ok(true, "Didn't hang!");
}