Backed out changeset bcec28b46718 (bug 1163745)

This commit is contained in:
Tim Taubert 2015-06-16 22:12:29 +02:00
Родитель ddafaf7012
Коммит 6450ad809c
2 изменённых файлов: 3 добавлений и 7 удалений

Просмотреть файл

@ -61,9 +61,7 @@ let TabAttributesInternal = {
// Set attributes.
for (let name in data) {
if (!this._skipAttrs.has(name)) {
tab.setAttribute(name, data[name]);
}
tab.setAttribute(name, data[name]);
}
}
};

Просмотреть файл

@ -36,8 +36,7 @@ add_task(function* test() {
// Make sure we're backwards compatible and restore old 'image' attributes.
let state = {
entries: [{url: "about:mozilla"}],
attributes: {custom: "foobaz"},
image: gBrowser.getIcon(tab)
attributes: {custom: "foobaz", image: gBrowser.getIcon(tab)}
};
// Prepare a pending tab waiting to be restored.
@ -46,8 +45,7 @@ add_task(function* test() {
yield promise;
ok(tab.hasAttribute("pending"), "tab is pending");
is(gBrowser.getIcon(tab), state.image, "tab has correct icon");
ok(!state.attributes.image, "'image' attribute not saved");
is(gBrowser.getIcon(tab), state.attributes.image, "tab has correct icon");
// Let the pending tab load.
gBrowser.selectedTab = tab;