blob: 7fc311a33f936c62469ad6165bc2a4656c0bcef0 (
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(async function testCloseWhilePrinting() {
await PrintHelper.withTestPage(async helper => {
await helper.startPrint();
await helper.setupMockPrint();
helper.mockFilePicker("output.pdf");
await helper.withClosingFn(async () => {
let cancelButton = helper.get("cancel-button");
is(
helper.doc.l10n.getAttributes(cancelButton).id,
"printui-cancel-button",
"The cancel button is using the 'cancel' string"
);
EventUtils.sendKey("return", helper.win);
is(
helper.doc.l10n.getAttributes(cancelButton).id,
"printui-close-button",
"The cancel button is using the 'close' string"
);
helper.resolvePrint();
});
});
});
|