1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/components/sessionstore/test/browser_514751.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +function test() { 1.9 + /** Test for Bug 514751 (Wallpaper) **/ 1.10 + 1.11 + waitForExplicitFinish(); 1.12 + 1.13 + let state = { 1.14 + windows: [{ 1.15 + tabs: [{ 1.16 + entries: [ 1.17 + { url: "http://www.mozilla.org/projects/minefield/", title: "Minefield Start Page" }, 1.18 + {} 1.19 + ] 1.20 + }] 1.21 + }] 1.22 + }; 1.23 + 1.24 + var theWin = openDialog(location, "", "chrome,all,dialog=no"); 1.25 + theWin.addEventListener("load", function () { 1.26 + theWin.removeEventListener("load", arguments.callee, false); 1.27 + 1.28 + executeSoon(function () { 1.29 + var gotError = false; 1.30 + try { 1.31 + ss.setWindowState(theWin, JSON.stringify(state), true); 1.32 + } catch (e) { 1.33 + if (/NS_ERROR_MALFORMED_URI/.test(e)) 1.34 + gotError = true; 1.35 + } 1.36 + ok(!gotError, "Didn't get a malformed URI error."); 1.37 + theWin.close(); 1.38 + finish(); 1.39 + }); 1.40 + }, false); 1.41 +} 1.42 +