This will allow events to get handled with customizable select. HasPrimaryAction for listboxes needs to be overridden since before it was returning true because of the listener: https://searchfox.org/firefox-main/rev/7b08fa00f500ed877b16983a6a77d2c852aad1d0/accessible/generic/LocalAccessible.cpp#3433-3435 Without that, we fail devtools/server/tests/browser/browser_accessibility_keyboard_audit.js Differential Revision: https://phabricator.services.mozilla.com/D287830
41 lines
1.0 KiB
INI
41 lines
1.0 KiB
INI
# 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/.
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Core", "Layout: Form Controls")
|
|
|
|
MOCHITEST_MANIFESTS += ["test/mochitest.toml"]
|
|
MOCHITEST_CHROME_MANIFESTS += ["test/chrome.toml"]
|
|
|
|
UNIFIED_SOURCES += [
|
|
"ButtonControlFrame.cpp",
|
|
"InputButtonControlFrame.cpp",
|
|
"ListMutationObserver.cpp",
|
|
"nsCheckboxRadioFrame.cpp",
|
|
"nsColorControlFrame.cpp",
|
|
"nsComboboxControlFrame.cpp",
|
|
"nsDateTimeControlFrame.cpp",
|
|
"nsFieldSetFrame.cpp",
|
|
"nsFileControlFrame.cpp",
|
|
"nsImageControlFrame.cpp",
|
|
"nsListControlFrame.cpp",
|
|
"nsProgressFrame.cpp",
|
|
"nsRangeFrame.cpp",
|
|
"nsTextControlFrame.cpp",
|
|
]
|
|
|
|
FINAL_LIBRARY = "xul"
|
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
LOCAL_INCLUDES += [
|
|
"../base",
|
|
"../generic",
|
|
"../painting",
|
|
"../style",
|
|
"../xul",
|
|
"/dom/base",
|
|
"/dom/html",
|
|
]
|