/* 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"; async function testComboBox(browser, accDoc) { const box = getNativeInterface(accDoc, "box"); is(box.getAttributeValue("AXRole"), "AXComboBox"); is(box.getAttributeValue("AXValue"), "peach", "Initial value correct"); let expandedChanged = waitForMacEvent("AXExpandedChanged", "box"); let didBoxValueChange = false; waitForMacEvent("AXValueChanged", "box").then(() => { didBoxValueChange = true; }); await invokeContentTask(browser, [], () => { const b = content.document.getElementById("box"); b.ariaExpanded = true; }); await expandedChanged; ok(!didBoxValueChange, "Value of combobox did not change when it was opened"); is(box.getAttributeValue("AXValue"), "peach", "After popup value correct"); } addAccessibleTask( `