blob: b3a2f2d324b1d13ba456b846d32440c4e2b632e4 (
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
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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// This is testing the fix in bug 1729847, specifically
// clicking enter while the pocket panel is open should not close the panel.
add_task(async function () {
let tab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
"https://example.com/browser/browser/components/pocket/test/test.html"
);
info("clicking on pocket button in toolbar");
let pocketButton = document.getElementById("save-to-pocket-button");
// The panel is created on the fly, so we can't simply wait for focus
// inside it.
let pocketPanelShown = BrowserTestUtils.waitForEvent(
document,
"popupshown",
true
);
pocketButton.click();
await pocketPanelShown;
let pocketPanel = document.getElementById("customizationui-widget-panel");
let pocketFrame = pocketPanel.querySelector("browser");
// Ensure that the document layout has been flushed before triggering the focus event
// (See Bug 1519808 for a rationale).
await pocketFrame.ownerGlobal.promiseDocumentFlushed(() => {});
// The panelview should have closemenu="none".
// Without closemenu="none", the following sequence of
// frame focus then enter would close the panel,
// but we don't want it to close, we want it to stay open.
let focusEventPromise = BrowserTestUtils.waitForEvent(pocketFrame, "focus");
pocketFrame.focus();
await focusEventPromise;
EventUtils.synthesizeKey("VK_RETURN");
// Is the Pocket panel still open?
is(pocketPanel.state, "open", "pocket panel is open");
// We're done now, we can close the panel.
info("closing pocket panel");
let pocketPanelHidden = BrowserTestUtils.waitForEvent(
pocketPanel,
"popuphidden"
);
pocketPanel.hidePopup();
await pocketPanelHidden;
BrowserTestUtils.removeTab(tab);
});
|