summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/browser_644409-scratchpads.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/sessionstore/test/browser_644409-scratchpads.js')
-rw-r--r--browser/components/sessionstore/test/browser_644409-scratchpads.js68
1 files changed, 68 insertions, 0 deletions
diff --git a/browser/components/sessionstore/test/browser_644409-scratchpads.js b/browser/components/sessionstore/test/browser_644409-scratchpads.js
new file mode 100644
index 000000000..56826801a
--- /dev/null
+++ b/browser/components/sessionstore/test/browser_644409-scratchpads.js
@@ -0,0 +1,68 @@
+ /* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+const testState = {
+ windows: [{
+ tabs: [
+ { entries: [{ url: "about:blank" }] },
+ ]
+ }],
+ scratchpads: [
+ { text: "text1", executionContext: 1 },
+ { text: "", executionContext: 2, filename: "test.js" }
+ ]
+};
+
+// only finish() when correct number of windows opened
+var restored = [];
+function addState(state) {
+ restored.push(state);
+
+ if (restored.length == testState.scratchpads.length) {
+ ok(statesMatch(restored, testState.scratchpads),
+ "Two scratchpad windows restored");
+
+ Services.ww.unregisterNotification(windowObserver);
+ finish();
+ }
+}
+
+function test() {
+ waitForExplicitFinish();
+
+ Services.ww.registerNotification(windowObserver);
+
+ ss.setBrowserState(JSON.stringify(testState));
+}
+
+function windowObserver(aSubject, aTopic, aData) {
+ if (aTopic == "domwindowopened") {
+ let win = aSubject.QueryInterface(Ci.nsIDOMWindow);
+ win.addEventListener("load", function onLoad() {
+ win.removeEventListener("load", onLoad, false);
+
+ if (win.Scratchpad) {
+ win.Scratchpad.addObserver({
+ onReady: function() {
+ win.Scratchpad.removeObserver(this);
+
+ let state = win.Scratchpad.getState();
+ BrowserTestUtils.closeWindow(win).then(() => {
+ addState(state);
+ });
+ },
+ });
+ }
+ }, false);
+ }
+}
+
+function statesMatch(restored, states) {
+ return states.every(function(state) {
+ return restored.some(function(restoredState) {
+ return state.filename == restoredState.filename &&
+ state.text == restoredState.text &&
+ state.executionContext == restoredState.executionContext;
+ })
+ });
+}