reftests: Add a test for matching by class

This commit is contained in:
Benjamin Otte 2011-05-15 01:28:17 +02:00
parent 78de3e8180
commit 8ca799cc39
4 changed files with 47 additions and 0 deletions

View File

@ -29,6 +29,9 @@ EXTRA_DIST += \
box-packing.css \
box-packing.ref.ui \
box-packing.ui \
css-match-class.css \
css-match-class.ref.ui \
css-match-class.ui \
css-match-name.css \
css-match-name.ref.ui \
css-match-name.ui \

View File

@ -0,0 +1,15 @@
.window {
engine: none;
background-image: none;
background-color: green;
border-radius: 0;
border-style: none;
}
.notwindow {
background-color: red;
}
.window.notwindow {
background-color: blue;
}

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="GtkImage" id="image1">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="pixbuf">green-20x20.png</property>
</object>
</child>
</object>
</interface>

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<object class="GtkWindow" id="window1">
<property name="width_request">20</property>
<property name="height_request">20</property>
<property name="can_focus">False</property>
<property name="type">popup</property>
<property name="name">window</property>
<style>
<class name="window" />
</style>
</object>
</interface>