summaryrefslogtreecommitdiffstats
path: root/accessible/tests/browser/bounds/browser_test_resolution.js
blob: 0b0b47418d7d6b1acc318c57c7ee7d1e6fbcecab (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

/* import-globals-from ../../mochitest/layout.js */

async function testScaledBounds(browser, accDoc, scale, id, type = "object") {
  let acc = findAccessibleChildByID(accDoc, id);

  // Get document offset
  let [docX, docY] = getBounds(accDoc);

  // Get the unscaled bounds of the accessible
  let [x, y, width, height] =
    type == "text"
      ? getRangeExtents(acc, 0, -1, COORDTYPE_SCREEN_RELATIVE)
      : getBounds(acc);

  await invokeContentTask(browser, [scale], _scale => {
    const { Layout } = ChromeUtils.importESModule(
      "chrome://mochitests/content/browser/accessible/tests/browser/Layout.sys.mjs"
    );
    Layout.setResolution(content.document, _scale);
  });

  let [scaledX, scaledY, scaledWidth, scaledHeight] =
    type == "text"
      ? getRangeExtents(acc, 0, -1, COORDTYPE_SCREEN_RELATIVE)
      : getBounds(acc);

  let name = prettyName(acc);
  isWithin(scaledWidth, width * scale, 2, "Wrong scaled width of " + name);
  isWithin(scaledHeight, height * scale, 2, "Wrong scaled height of " + name);
  isWithin(scaledX - docX, (x - docX) * scale, 2, "Wrong scaled x of " + name);
  isWithin(scaledY - docY, (y - docY) * scale, 2, "Wrong scaled y of " + name);

  await invokeContentTask(browser, [], () => {
    const { Layout } = ChromeUtils.importESModule(
      "chrome://mochitests/content/browser/accessible/tests/browser/Layout.sys.mjs"
    );
    Layout.setResolution(content.document, 1.0);
  });
}

async function runTests(browser, accDoc) {
  // The scrollbars get in the way of container bounds calculation.
  await SpecialPowers.pushPrefEnv({
    set: [["ui.useOverlayScrollbars", 1]],
  });

  await testScaledBounds(browser, accDoc, 2.0, "p1");
  await testScaledBounds(browser, accDoc, 0.5, "p2");
  await testScaledBounds(browser, accDoc, 3.5, "b1");

  await testScaledBounds(browser, accDoc, 2.0, "p1", "text");
  await testScaledBounds(browser, accDoc, 0.75, "p2", "text");
}

/**
 * Test accessible boundaries when page is zoomed
 */
addAccessibleTask(
  `
<p id='p1' style='font-family: monospace;'>Tilimilitryamdiya</p>
<p id="p2">para 2</p>
<button id="b1">Hello</button>
`,
  runTests,
  { iframe: true, remoteIframe: true }
);