tests: Add a test for small ellipsized labels

Tests the fix from bf41392861
This commit is contained in:
Benjamin Otte 2011-04-22 04:56:03 +02:00
parent af75173ddd
commit 32a3ad412e
3 changed files with 33 additions and 0 deletions

View File

@ -34,5 +34,7 @@ EXTRA_DIST += \
label-sizing.css \
label-sizing.ref.ui \
label-sizing.ui \
label-small-ellipsized.ref.ui \
label-small-ellipsized.ui \
simpe.ref.png \
simple.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"> </property>
</object>
</child>
</object>
</interface>

View File

@ -0,0 +1,16 @@
<?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"> </property>
<property name="ellipsize">end</property>
</object>
</child>
</object>
</interface>