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

/* eslint-disable camelcase */
const UIA_ButtonControlTypeId = 50000;
const UIA_DocumentControlTypeId = 50030;
/* eslint-enable camelcase */

addUiaTask(
  `
<button id="button">button</button>
  `,
  async function () {
    let controlType = await runPython(`
      global doc
      doc = getDocUia()
      return doc.CurrentControlType
    `);
    is(controlType, UIA_DocumentControlTypeId, "doc has correct control type");
    controlType = await runPython(`
      button = findUiaByDomId(doc, "button")
      return button.CurrentControlType
    `);
    is(controlType, UIA_ButtonControlTypeId, "button has correct control type");
  },
  { chrome: true, topLevel: true, iframe: true, remoteIframe: true }
);