Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); |
michael@0 | 6 | |
michael@0 | 7 | // Get services. |
michael@0 | 8 | let bs = Cc["@mozilla.org/browser/nav-bookmarks-service;1"]. |
michael@0 | 9 | getService(Ci.nsINavBookmarksService); |
michael@0 | 10 | let os = Cc["@mozilla.org/observer-service;1"]. |
michael@0 | 11 | getService(Ci.nsIObserverService); |
michael@0 | 12 | |
michael@0 | 13 | let gDummyCreated = false; |
michael@0 | 14 | let gDummyAdded = false; |
michael@0 | 15 | |
michael@0 | 16 | let observer = { |
michael@0 | 17 | observe: function(subject, topic, data) { |
michael@0 | 18 | if (topic == "dummy-observer-created") |
michael@0 | 19 | gDummyCreated = true; |
michael@0 | 20 | else if (topic == "dummy-observer-item-added") |
michael@0 | 21 | gDummyAdded = true; |
michael@0 | 22 | }, |
michael@0 | 23 | |
michael@0 | 24 | QueryInterface: XPCOMUtils.generateQI([ |
michael@0 | 25 | Ci.nsIObserver, |
michael@0 | 26 | Ci.nsISupportsWeakReference, |
michael@0 | 27 | ]) |
michael@0 | 28 | }; |
michael@0 | 29 | |
michael@0 | 30 | function verify() { |
michael@0 | 31 | do_check_true(gDummyCreated); |
michael@0 | 32 | do_check_true(gDummyAdded); |
michael@0 | 33 | do_test_finished(); |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | // main |
michael@0 | 37 | function run_test() { |
michael@0 | 38 | do_load_manifest("nsDummyObserver.manifest"); |
michael@0 | 39 | |
michael@0 | 40 | os.addObserver(observer, "dummy-observer-created", true); |
michael@0 | 41 | os.addObserver(observer, "dummy-observer-item-added", true); |
michael@0 | 42 | |
michael@0 | 43 | // Add a bookmark |
michael@0 | 44 | bs.insertBookmark(bs.unfiledBookmarksFolder, uri("http://typed.mozilla.org"), |
michael@0 | 45 | bs.DEFAULT_INDEX, "bookmark"); |
michael@0 | 46 | |
michael@0 | 47 | do_test_pending(); |
michael@0 | 48 | do_timeout(1000, verify); |
michael@0 | 49 | } |