Files
sousa-gecko/layout/forms/moz.build
T
Emilio Cobos Álvarez 9998e4c779 Bug 2023453 - Remove HTMLSelectEventListener. r=dom-core,keithamus
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
2026-03-26 13:29:14 +00:00

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",
]