Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/xul/test/browser.toml
add_setup(async function () {
  await SpecialPowers.pushPrefEnv({
    set: [["test.wait300msAfterTabSwitch", true]],
  });
});
add_task(async function () {
  const PAGE = `
<!doctype html>
<select>
<option value="1">AA Option</option>
<option value="2">BB Option</option>
<option value="3"> CC Option</option>
<option value="4">  DD Option</option>
<option value="5">   EE Option</option>
</select>`;
  const url = "data:text/html," + encodeURI(PAGE);
  await BrowserTestUtils.withNewTab(
    {
      gBrowser,
      url,
    },
    async function (browser) {
      let popupShownPromise = BrowserTestUtils.waitForSelectPopupShown(window);
      await BrowserTestUtils.synthesizeMouseAtCenter("select", {}, browser);
      let popup = await popupShownPromise;
      EventUtils.sendString("C", window);
      EventUtils.sendKey("RETURN", window);
      ok(
        await TestUtils.waitForCondition(() => {
          return SpecialPowers.spawn(
            browser,
            [],
            () => content.document.querySelector("select").value
          ).then(value => value == 3);
        }),
        "Unexpected value for select element (expected 3)!"
      );
    }
  );
});