summaryrefslogtreecommitdiffstats
path: root/browser/components/extensions/test/browser/browser_ext_pageAction_popup_resize.js
blob: 7193430616aafa23864ae3e0e2a3b31db5626259 (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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";

add_task(async function testPageActionPopupResize() {
  let browser;

  let extension = ExtensionTestUtils.loadExtension({
    manifest: {
      page_action: {
        default_popup: "popup.html",
        browser_style: true,
      },
    },
    background: function () {
      browser.tabs.query({ active: true, currentWindow: true }, tabs => {
        const tabId = tabs[0].id;

        browser.pageAction.show(tabId).then(() => {
          browser.test.sendMessage("action-shown");
        });
      });
    },

    files: {
      "popup.html": `<!DOCTYPE html><html><head><meta charset="utf-8"></head><body><div></div></body></html>`,
    },
  });

  await extension.startup();
  await extension.awaitMessage("action-shown");

  clickPageAction(extension, window);

  browser = await awaitExtensionPanel(extension);

  async function checkSize(height, width) {
    let dims = await promiseContentDimensions(browser);
    let { body, root } = dims;

    is(
      dims.window.innerHeight,
      height,
      `Panel window should be ${height}px tall`
    );
    is(
      body.clientHeight,
      body.scrollHeight,
      "Panel body should be tall enough to fit its contents"
    );
    is(
      root.clientHeight,
      root.scrollHeight,
      "Panel root should be tall enough to fit its contents"
    );

    if (width) {
      is(
        body.clientWidth,
        body.scrollWidth,
        "Panel body should be wide enough to fit its contents"
      );

      // Tolerate if it is 1px too wide, as that may happen with the current
      // resizing method.
      ok(
        Math.abs(dims.window.innerWidth - width) <= 1,
        `Panel window should be ${width}px wide`
      );
    }
  }

  function setSize(size) {
    let elem = content.document.body.firstElementChild;
    elem.style.height = `${size}px`;
    elem.style.width = `${size}px`;
  }

  function setHeight(height) {
    content.document.body.style.overflow = "hidden";
    let elem = content.document.body.firstElementChild;
    elem.style.height = `${height}px`;
  }

  let sizes = [200, 400, 300];

  for (let size of sizes) {
    await alterContent(browser, setSize, size);
    await checkSize(size, size);
  }

  let dims = await alterContent(browser, setSize, 1400);
  let { body, root } = dims;

  is(dims.window.innerWidth, 800, "Panel window width");
  ok(
    body.clientWidth <= 800,
    `Panel body width ${body.clientWidth} is less than 800`
  );
  is(body.scrollWidth, 1400, "Panel body scroll width");

  is(dims.window.innerHeight, 600, "Panel window height");
  ok(
    root.clientHeight <= 600,
    `Panel root height (${root.clientHeight}px) is less than 600px`
  );
  is(root.scrollHeight, 1400, "Panel root scroll height");

  for (let size of sizes) {
    await alterContent(browser, setHeight, size);
    await checkSize(size, null);
  }

  await extension.unload();
});

add_task(async function testPageActionPopupReflow() {
  let browser;

  let extension = ExtensionTestUtils.loadExtension({
    manifest: {
      page_action: {
        default_popup: "popup.html",
        browser_style: true,
      },
    },
    background: function () {
      browser.tabs.query({ active: true, currentWindow: true }, tabs => {
        const tabId = tabs[0].id;

        browser.pageAction.show(tabId).then(() => {
          browser.test.sendMessage("action-shown");
        });
      });
    },

    files: {
      "popup.html": `<!DOCTYPE html><html><head><meta charset="utf-8"></head>
        <body>
          The quick mauve fox jumps over the opalescent toad, with its glowing
          eyes, and its vantablack mouth, and its bottomless chasm where you
          would hope to find a heart, that looks straight into the deepest
          pits of hell. The fox shivers, and cowers, and tries to run, but
          the toad is utterly without pity. It turns, ever so slightly...
        </body>
      </html>`,
    },
  });

  await extension.startup();
  await extension.awaitMessage("action-shown");

  clickPageAction(extension, window);

  browser = await awaitExtensionPanel(extension);

  function setSize(size) {
    content.document.body.style.fontSize = `${size}px`;
  }

  let dims = await alterContent(browser, setSize, 18);

  is(dims.window.innerWidth, 800, "Panel window should be 800px wide");
  is(dims.body.clientWidth, 800, "Panel body should be 800px wide");
  is(
    dims.body.clientWidth,
    dims.body.scrollWidth,
    "Panel body should be wide enough to fit its contents"
  );

  ok(
    dims.window.innerHeight > 36,
    `Panel window height (${dims.window.innerHeight}px) should be taller than two lines of text.`
  );

  is(
    dims.body.clientHeight,
    dims.body.scrollHeight,
    "Panel body should be tall enough to fit its contents"
  );
  is(
    dims.root.clientHeight,
    dims.root.scrollHeight,
    "Panel root should be tall enough to fit its contents"
  );

  await extension.unload();
});