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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/* Any copyright is dedicated to the Public Domain.
* https://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(async function test_site_specific_global_zoom() {
const TEST_PAGE_URL_1 = "http://example.net";
const TEST_PAGE_URL_2 = "http://example.net";
// Prepare the test tabs
console.log("Adding tab 1");
let tab1 = BrowserTestUtils.addTab(gBrowser);
let tabBrowser1 = gBrowser.getBrowserForTab(tab1);
await FullZoomHelper.selectTabAndWaitForLocationChange(tab1);
await FullZoomHelper.load(tab1, TEST_PAGE_URL_1);
console.log("Adding tab 2");
let tab2 = BrowserTestUtils.addTab(gBrowser);
let tabBrowser2 = gBrowser.getBrowserForTab(tab2);
await FullZoomHelper.selectTabAndWaitForLocationChange(tab2);
await FullZoomHelper.load(tab2, TEST_PAGE_URL_2);
// 67% global zoom
await FullZoomHelper.changeDefaultZoom(67);
let defaultZoom = await FullZoomHelper.getGlobalValue();
is(defaultZoom, 0.67, "Global zoom is set to 67%");
// 67% local zoom tab 1
await FullZoomHelper.selectTabAndWaitForLocationChange(tab1);
await TestUtils.waitForCondition(() => {
console.log(
"Current tab 1 zoom is: ",
ZoomManager.getZoomForBrowser(tabBrowser1)
);
return ZoomManager.getZoomForBrowser(tabBrowser1) == 0.67;
});
is(
ZoomManager.getZoomForBrowser(tabBrowser1),
0.67,
"Setting default zoom causes tab 1 (background) to zoom to default zoom."
);
// 67% local zoom tab 2
await FullZoomHelper.selectTabAndWaitForLocationChange(tab2);
await TestUtils.waitForCondition(() => {
console.log(
"Current tab 2 zoom is: ",
ZoomManager.getZoomForBrowser(tabBrowser2)
);
return ZoomManager.getZoomForBrowser(tabBrowser2) == 0.67;
});
is(
ZoomManager.getZoomForBrowser(tabBrowser2),
0.67,
"Setting default zoom causes tab 2 (foreground) to zoom to default zoom."
);
// 80% site specific zoom
await FullZoomHelper.selectTabAndWaitForLocationChange(tab1);
console.log("Enlarging");
await FullZoom.enlarge();
await TestUtils.waitForCondition(() => {
console.log(
"Current tab 1 zoom is: ",
ZoomManager.getZoomForBrowser(tabBrowser1)
);
return ZoomManager.getZoomForBrowser(tabBrowser1) == 0.8;
});
is(
ZoomManager.getZoomForBrowser(tabBrowser1),
0.8,
"Changed local zoom in tab one."
);
await FullZoomHelper.selectTabAndWaitForLocationChange(tab2);
await TestUtils.waitForCondition(() => {
console.log(
"Current tab 2 zoom is: ",
ZoomManager.getZoomForBrowser(tabBrowser2)
);
return ZoomManager.getZoomForBrowser(tabBrowser2) == 0.8;
});
is(
ZoomManager.getZoomForBrowser(tabBrowser2),
0.8,
"Second tab respects site specific zoom."
);
await FullZoomHelper.removeTabAndWaitForLocationChange();
await FullZoomHelper.removeTabAndWaitForLocationChange();
});
|