diff options
| author | Benjamin Otte <otte@redhat.com> | 2011-05-05 15:32:22 (GMT) |
|---|---|---|
| committer | Benjamin Otte <otte@redhat.com> | 2011-05-05 15:33:44 (GMT) |
| commit | ac06529f6130c482ff54870e57129cce9eda6691 (patch) | |
| tree | ef79652207448937a6a8324260e5534288fff780 | |
| parent | 33e6479554a540b63705c0ea8fa07cb05311184e (diff) | |
| download | gtk+-ac06529f6130c482ff54870e57129cce9eda6691.zip gtk+-ac06529f6130c482ff54870e57129cce9eda6691.tar.xz | |
reftests: Add testcase for label justify fix
| -rw-r--r-- | tests/reftests/Makefile.am | 2 | ||||
| -rw-r--r-- | tests/reftests/label-wrap-justify.ref.ui | 73 | ||||
| -rw-r--r-- | tests/reftests/label-wrap-justify.ui | 78 |
3 files changed, 153 insertions, 0 deletions
diff --git a/tests/reftests/Makefile.am b/tests/reftests/Makefile.am index 3755a89..5828356 100644 --- a/tests/reftests/Makefile.am +++ b/tests/reftests/Makefile.am @@ -42,6 +42,8 @@ EXTRA_DIST += \ label-sizing.ui \ label-small-ellipsized.ref.ui \ label-small-ellipsized.ui \ + label-wrap-justify.ref.ui \ + label-wrap-justify.ui \ nonresizable-size.ref.ui \ nonresizable-size.ui \ quit-mnemonic.ref.ui \ diff --git a/tests/reftests/label-wrap-justify.ref.ui b/tests/reftests/label-wrap-justify.ref.ui new file mode 100644 index 0000000..8c8dbd9 --- /dev/null +++ b/tests/reftests/label-wrap-justify.ref.ui @@ -0,0 +1,73 @@ +<?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="GtkGrid" id="grid1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <child> + <object class="GtkLabel" id="label1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes"><tt>left +aligning</tt></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label2"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes"><tt> center +aligning</tt></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label3"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes"><tt> right +aligning</tt></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">2</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label4"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes"><tt>Make the widget wide enough</tt></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">3</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + </object> + </child> + </object> +</interface> diff --git a/tests/reftests/label-wrap-justify.ui b/tests/reftests/label-wrap-justify.ui new file mode 100644 index 0000000..31350a2 --- /dev/null +++ b/tests/reftests/label-wrap-justify.ui @@ -0,0 +1,78 @@ +<?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="GtkGrid" id="grid1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <child> + <object class="GtkLabel" id="label1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes"><tt>left +aligning</tt></property> + <property name="use_markup">True</property> + <property name="wrap">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label2"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes"><tt>center +aligning</tt></property> + <property name="use_markup">True</property> + <property name="justify">center</property> + <property name="wrap">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label3"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes"><tt>right +aligning</tt></property> + <property name="use_markup">True</property> + <property name="justify">right</property> + <property name="wrap">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">2</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label4"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes"><tt>Make the widget wide enough</tt></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">3</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + </object> + </child> + </object> +</interface> |
