mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9ee7f78167
If the img is not valid then its children will be rendered, and the sensible way to handle that is by giving the img a HyperTextAccessible instead of an ImageAccessible. Since the accessible name of such an img should be the value of the alt attribute we add similar logic as ImageAccessible::NativeName() to HyperTextAccessible::NativeName() conditioned on the tag being img.
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
#
|
|
# 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/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
relativesrcdir = @relativesrcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MOCHITEST_A11Y_FILES =\
|
|
dockids.html \
|
|
$(filter disabled-temporarily--bug-561508, test_applicationacc.xul) \
|
|
test_aria_globals.html \
|
|
test_aria_grid.html \
|
|
test_aria_imgmap.html \
|
|
test_aria_list.html \
|
|
test_aria_menu.html \
|
|
test_aria_presentation.html \
|
|
test_brokencontext.html \
|
|
test_button.xul \
|
|
test_canvas.html \
|
|
test_combobox.xul \
|
|
test_cssoverflow.html \
|
|
test_dochierarchy.html \
|
|
test_dockids.html \
|
|
test_filectrl.html \
|
|
test_formctrl.html \
|
|
test_formctrl.xul \
|
|
test_gencontent.html \
|
|
test_groupbox.xul \
|
|
test_iframe.html \
|
|
test_img.html \
|
|
test_invalid_img.xhtml \
|
|
test_invalidationlist.html \
|
|
test_list.html \
|
|
test_map.html \
|
|
test_media.html \
|
|
test_select.html \
|
|
test_tabbox.xul \
|
|
test_tabbrowser.xul \
|
|
test_table.html \
|
|
test_tree.xul \
|
|
test_txtcntr.html \
|
|
test_txtctrl.html \
|
|
test_txtctrl.xul \
|
|
wnd.xul \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|