blob: e1ec605c284e06310a4bc93555b5a50ae01b91ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
});
});
});
}
|