Remove focusable-container tests

Like the previous commit, these tests were relying
on setting :can-focus to make an unsuspecting container
focusable, which does not work anymore.
This commit is contained in:
Matthias Clasen 2020-04-08 08:01:58 -04:00
parent 6720552afd
commit 99eed078bd
4 changed files with 1 additions and 41 deletions

View File

@ -1,5 +0,0 @@
entry1 GtkText
box
entry2 GtkText
entry3 GtkText
WRAP

View File

@ -1,5 +0,0 @@
entry3 GtkText
entry2 GtkText
box
entry1 GtkText
WRAP

View File

@ -1,29 +0,0 @@
<interface>
<object class="GtkWindow" id="window">
<child>
<object class="GtkBox">
<child>
<object class="GtkEntry">
<property name="name">entry1</property>
</object>
</child>
<child>
<object class="GtkBox">
<property name="name">box</property>
<property name="can-focus">1</property>
<child>
<object class="GtkEntry">
<property name="name">entry2</property>
</object>
</child>
<child>
<object class="GtkEntry">
<property name="name">entry3</property>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</interface>

View File

@ -157,14 +157,13 @@ if add_languages('cpp', required: false)
endif
endif
focus_chain_tests = [
# test direction
[ 'basic', 'tab' ],
[ 'basic', 'tab-backward' ],
[ 'basic', 'left' ],
[ 'basic', 'right' ],
[ 'focusable-container', 'tab' ],
[ 'focusable-container', 'tab-backward' ],
[ 'widget-factory', 'tab' ],
[ 'widget-factory', 'tab-backward' ],
[ 'widget-factory', 'up' ],