reftests: Actually add toplevel vs popup testcase

Adds missing files from 79d1b11d0b and
reverts eba4ca3e66.
This commit is contained in:
Benjamin Otte 2011-05-09 01:09:01 +02:00
parent ece3c54f57
commit 50c36f38ff
3 changed files with 33 additions and 1 deletions

View File

@ -49,4 +49,6 @@ EXTRA_DIST += \
quit-mnemonic.ref.ui \
quit-mnemonic.ui \
simple.ref.ui \
simple.ui
simple.ui \
toplevel-vs-popup.ref.ui \
toplevel-vs-popup.ui

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<object class="GtkWindow" id="window1">
<property name="can_focus">False</property>
<property name="type">popup</property>
<child>
<object class="GtkLabel" id="label1">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">Hello World</property>
</object>
</child>
</object>
</interface>

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<object class="GtkWindow" id="window1">
<property name="can_focus">False</property>
<property name="has_resize_grip">False</property>
<child>
<object class="GtkLabel" id="label1">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">Hello World</property>
</object>
</child>
</object>
</interface>