Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | * http://creativecommons.org/publicdomain/zero/1.0/ |
michael@0 | 3 | */ |
michael@0 | 4 | |
michael@0 | 5 | // Bug 679604 - Test that a XUL persisted category from an older version of |
michael@0 | 6 | // Firefox doesn't break the add-ons manager when that category doesn't exist |
michael@0 | 7 | |
michael@0 | 8 | const PREF_UI_LASTCATEGORY = "extensions.ui.lastCategory"; |
michael@0 | 9 | |
michael@0 | 10 | var gManagerWindow; |
michael@0 | 11 | |
michael@0 | 12 | function test() { |
michael@0 | 13 | waitForExplicitFinish(); |
michael@0 | 14 | |
michael@0 | 15 | open_manager(null, function(aWindow) { |
michael@0 | 16 | var categories = aWindow.document.getElementById("categories"); |
michael@0 | 17 | categories.setAttribute("last-selected", "foo"); |
michael@0 | 18 | aWindow.document.persist("categories", "last-selected"); |
michael@0 | 19 | |
michael@0 | 20 | close_manager(aWindow, function() { |
michael@0 | 21 | Services.prefs.clearUserPref(PREF_UI_LASTCATEGORY); |
michael@0 | 22 | |
michael@0 | 23 | open_manager(null, function(aWindow) { |
michael@0 | 24 | is(new CategoryUtilities(aWindow).selectedCategory, "discover", |
michael@0 | 25 | "Should have loaded the right view"); |
michael@0 | 26 | |
michael@0 | 27 | close_manager(aWindow, finish); |
michael@0 | 28 | }); |
michael@0 | 29 | }); |
michael@0 | 30 | }); |
michael@0 | 31 | } |