fune/browser/base/content/test/sidebar/browser_sidebar_move.js
Kirk Steuber 55bdd37f7c Bug 1603830 - Replace XULElement.ordinal with el.style.MozBoxOrdinalGroup r=bgrins
Depends on D58670

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

--HG--
extra : moz-landing-system : lando
2020-01-06 20:02:43 +00:00

76 lines
1.9 KiB
JavaScript

registerCleanupFunction(() => {
Services.prefs.clearUserPref("sidebar.position_start");
SidebarUI.hide();
});
const EXPECTED_START_ORDINALS = [
["browser-border-start", 1],
["sidebar-box", 2],
["sidebar-splitter", 3],
["appcontent", 4],
["browser-border-end", 5],
];
const EXPECTED_END_ORDINALS = [
["browser-border-start", 1],
["sidebar-box", 4],
["sidebar-splitter", 3],
["appcontent", 2],
["browser-border-end", 5],
];
function getBrowserChildrenWithOrdinals() {
let browser = document.getElementById("browser");
return [...browser.children].map(node => {
return [node.id, node.style.MozBoxOrdinalGroup];
});
}
add_task(async function() {
await SidebarUI.show("viewBookmarksSidebar");
SidebarUI.showSwitcherPanel();
let reversePositionButton = document.getElementById(
"sidebar-reverse-position"
);
let originalLabel = reversePositionButton.getAttribute("label");
let box = document.getElementById("sidebar-box");
// Default (position: left)
Assert.deepEqual(
getBrowserChildrenWithOrdinals(),
EXPECTED_START_ORDINALS,
"Correct ordinal (start)"
);
ok(!box.hasAttribute("positionend"), "Positioned start");
// Moved to right
SidebarUI.reversePosition();
SidebarUI.showSwitcherPanel();
Assert.deepEqual(
getBrowserChildrenWithOrdinals(),
EXPECTED_END_ORDINALS,
"Correct ordinal (end)"
);
isnot(
reversePositionButton.getAttribute("label"),
originalLabel,
"Label changed"
);
ok(box.hasAttribute("positionend"), "Positioned end");
// Moved to back to left
SidebarUI.reversePosition();
SidebarUI.showSwitcherPanel();
Assert.deepEqual(
getBrowserChildrenWithOrdinals(),
EXPECTED_START_ORDINALS,
"Correct ordinal (start)"
);
ok(!box.hasAttribute("positionend"), "Positioned start");
is(
reversePositionButton.getAttribute("label"),
originalLabel,
"Label is back to normal"
);
});