1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/components/places/tests/unit/test_browserGlue_bookmarkshtml.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* vim:set ts=2 sw=2 sts=2 et: */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +/** 1.11 + * Tests that nsBrowserGlue correctly exports bookmarks.html at shutdown if 1.12 + * browser.bookmarks.autoExportHTML is set to true. 1.13 + */ 1.14 + 1.15 +function run_test() { 1.16 + run_next_test(); 1.17 +} 1.18 + 1.19 +add_task(function* () { 1.20 + remove_bookmarks_html(); 1.21 + 1.22 + Services.prefs.setBoolPref("browser.bookmarks.autoExportHTML", true); 1.23 + do_register_cleanup(() => Services.prefs.clearUserPref("browser.bookmarks.autoExportHTML")); 1.24 + 1.25 + // Initialize nsBrowserGlue before Places. 1.26 + Cc["@mozilla.org/browser/browserglue;1"].getService(Ci.nsIBrowserGlue); 1.27 + 1.28 + // Initialize Places through the History Service. 1.29 + Cc["@mozilla.org/browser/nav-history-service;1"] 1.30 + .getService(Ci.nsINavHistoryService); 1.31 + 1.32 + Services.obs.addObserver(function observer() { 1.33 + Services.obs.removeObserver(observer, "profile-before-change"); 1.34 + check_bookmarks_html(); 1.35 + }, "profile-before-change", false); 1.36 +});