diff options
Diffstat (limited to 'toolkit/mozapps/extensions/test/browser/browser_bug679604.js')
-rw-r--r-- | toolkit/mozapps/extensions/test/browser/browser_bug679604.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/toolkit/mozapps/extensions/test/browser/browser_bug679604.js b/toolkit/mozapps/extensions/test/browser/browser_bug679604.js new file mode 100644 index 000000000..e1ec605c2 --- /dev/null +++ b/toolkit/mozapps/extensions/test/browser/browser_bug679604.js @@ -0,0 +1,29 @@ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ + */ + +// Bug 679604 - Test that a XUL persisted category from an older version of +// Firefox doesn't break the add-ons manager when that category doesn't exist + +var gManagerWindow; + +function test() { + waitForExplicitFinish(); + + open_manager(null, function(aWindow) { + var categories = aWindow.document.getElementById("categories"); + categories.setAttribute("last-selected", "foo"); + aWindow.document.persist("categories", "last-selected"); + + close_manager(aWindow, function() { + Services.prefs.clearUserPref(PREF_UI_LASTCATEGORY); + + open_manager(null, function(aWindow) { + is(new CategoryUtilities(aWindow).selectedCategory, "discover", + "Should have loaded the right view"); + + close_manager(aWindow, finish); + }); + }); + }); +} |