fune/browser/components/sessionstore/test/browser_579879.js
Victor Porof 1f830c96da Bug 1561435 - Format browser/components/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D36042

--HG--
extra : source : d3afcafdce650a6f36cebbc126ee93b17f13cf52
2019-07-05 09:53:32 +02:00

31 lines
758 B
JavaScript

"use strict";
add_task(async function() {
let tab1 = BrowserTestUtils.addTab(
gBrowser,
"data:text/plain;charset=utf-8,foo"
);
gBrowser.pinTab(tab1);
await promiseBrowserLoaded(tab1.linkedBrowser);
let tab2 = BrowserTestUtils.addTab(gBrowser);
gBrowser.pinTab(tab2);
is(
Array.prototype.indexOf.call(gBrowser.tabs, tab1),
0,
"pinned tab 1 is at the first position"
);
await promiseRemoveTabAndSessionState(tab1);
tab1 = undoCloseTab();
ok(tab1.pinned, "pinned tab 1 has been restored as a pinned tab");
is(
Array.prototype.indexOf.call(gBrowser.tabs, tab1),
0,
"pinned tab 1 has been restored to the first position"
);
BrowserTestUtils.removeTab(tab1);
BrowserTestUtils.removeTab(tab2);
});