blob: bbb3b1b2994c2ab98fd94d085fa84b9bc3acb210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
const NOTIFICATION = "sessionstore-browser-state-restored";
function test() {
waitForExplicitFinish();
function observe(subject, topic, data) {
if (NOTIFICATION == topic) {
finish();
ok(true, "TOPIC received");
}
}
Services.obs.addObserver(observe, NOTIFICATION);
registerCleanupFunction(function () {
Services.obs.removeObserver(observe, NOTIFICATION);
});
ss.setBrowserState(JSON.stringify({ windows: [] }));
}
|