diff options
author | Benjamin Otte <otte@redhat.com> | 2011-12-29 10:02:54 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-12-29 10:03:59 +0100 |
commit | 84c061b86188b88dea51ac59c416c2014107130c (patch) | |
tree | b917db4f6dcc31155bdc7212da23c64137af9496 /tests/reftests | |
parent | 01320e5773768827b5754470d3ed52392151f67a (diff) | |
download | gtk+-84c061b86188b88dea51ac59c416c2014107130c.tar.gz |
reftests: Add test for empty grid with spacing
This used to crash.
https://bugzilla.gnome.org/show_bug.cgi?id=660139
Diffstat (limited to 'tests/reftests')
-rw-r--r-- | tests/reftests/Makefile.am | 2 | ||||
-rw-r--r-- | tests/reftests/grid-empty-with-spacing.ref.ui | 16 | ||||
-rw-r--r-- | tests/reftests/grid-empty-with-spacing.ui | 28 |
3 files changed, 46 insertions, 0 deletions
diff --git a/tests/reftests/Makefile.am b/tests/reftests/Makefile.am index 2e0624f097..d795c6d656 100644 --- a/tests/reftests/Makefile.am +++ b/tests/reftests/Makefile.am @@ -107,6 +107,8 @@ EXTRA_DIST += \ entry-progress-coloring.ref.ui \ entry-progress-coloring.ui \ green-20x20.png \ + grid-empty-with-spacing.ref.ui \ + grid-empty-with-spacing.ui \ grid-expand.css \ grid-expand.ref.ui \ grid-expand.ui \ diff --git a/tests/reftests/grid-empty-with-spacing.ref.ui b/tests/reftests/grid-empty-with-spacing.ref.ui new file mode 100644 index 0000000000..dccd1b8bfa --- /dev/null +++ b/tests/reftests/grid-empty-with-spacing.ref.ui @@ -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="GtkGrid" id="grid1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">5</property> + <property name="column_spacing">5</property> + </object> + </child> + </object> +</interface> diff --git a/tests/reftests/grid-empty-with-spacing.ui b/tests/reftests/grid-empty-with-spacing.ui new file mode 100644 index 0000000000..3598fc71a5 --- /dev/null +++ b/tests/reftests/grid-empty-with-spacing.ui @@ -0,0 +1,28 @@ +<?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> + <property name="row_spacing">5</property> + <property name="column_spacing">5</property> + <child> + <object class="GtkLabel" id="label1"> + <property name="can_focus">False</property> + <property name="label" translatable="yes">invisible</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> + </object> + </child> + </object> +</interface> |