summaryrefslogtreecommitdiffstats
path: root/accessible/tests/browser/windows/uia/browser_elementFromPoint.js
blob: e2fda4ab30dd5e24364e7ca1b0c6fef8b4e307d1 (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
/* 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";

addAccessibleTask(
  `
<button id="button">button</p>
<a id="a" href="#">a</a>
  `,
  async function (browser, docAcc) {
    ok(
      await runPython(`
        global doc
        doc = getDocUia()
        button = findUiaByDomId(doc, "button")
        rect = button.CurrentBoundingRectangle
        found = uiaClient.ElementFromPoint(POINT(rect.left + 1, rect.top + 1))
        return uiaClient.CompareElements(button, found)
      `),
      "ElementFromPoint on button returns button"
    );
    ok(
      await runPython(`
        a = findUiaByDomId(doc, "a")
        rect = a.CurrentBoundingRectangle
        found = uiaClient.ElementFromPoint(POINT(rect.left + 1, rect.top + 1))
        return uiaClient.CompareElements(a, found)
      `),
      "ElementFromPoint on a returns a"
    );
  }
);