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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Check that menubar visibility is propagated correctly to new windows.
*/
add_task(async function test_menubar_visbility() {
let menubar = document.getElementById("toolbar-menubar");
is(menubar.getAttribute("autohide"), "true", "Menubar should be autohiding");
registerCleanupFunction(() => {
Services.xulStore.removeValue(
AppConstants.BROWSER_CHROME_URL,
menubar.id,
"autohide"
);
menubar.setAttribute("autohide", "true");
});
let contextMenu = document.getElementById("toolbar-context-menu");
let shownPromise = popupShown(contextMenu);
EventUtils.synthesizeMouse(
document.getElementById("stop-reload-button"),
2,
2,
{
type: "contextmenu",
button: 2,
}
);
await shownPromise;
let attrChanged = BrowserTestUtils.waitForAttribute(
"autohide",
menubar,
"false"
);
EventUtils.synthesizeMouseAtCenter(
document.getElementById("toggle_toolbar-menubar"),
{}
);
await attrChanged;
contextMenu.hidePopup(); // to be safe.
is(
menubar.getAttribute("autohide"),
"false",
"Menubar should now be permanently visible."
);
let persistedValue = Services.xulStore.getValue(
AppConstants.BROWSER_CHROME_URL,
menubar.id,
"autohide"
);
is(persistedValue, "false", "New value should be persisted");
let win = await BrowserTestUtils.openNewBrowserWindow();
is(
win.document.getElementById("toolbar-menubar").getAttribute("autohide"),
"false",
"Menubar should also be permanently visible in the new window."
);
await BrowserTestUtils.closeWindow(win);
});
|