a11y tests: Add a tests for menu buttons with popovers

This shows that popovers currently lack accessibility.
This commit is contained in:
Matthias Clasen
2014-02-22 12:51:11 -05:00
parent 18749136da
commit 71e46a0b0e
3 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<menu id="menu">
<section>
<item>
<attribute name="label">New</attribute>
</item>
</section>
</menu>
<object class="GtkWindow" id="window1">
<property name="can_focus">False</property>
<child>
<object class="GtkMenuButton" id="menubutton">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="menu-model">menu</property>
<property name="use-popover">True</property>
</object>
</child>
</object>
</interface>