[gtk+] reftests: Add a simple reftest for background-position



commit 3a8cec5f171c685fe5d4328842e9d0f053638c62
Author: Benjamin Otte <otte redhat com>
Date:   Wed May 30 11:33:27 2012 -0400

    reftests: Add a simple reftest for background-position
    
    This is mostly to ensure that the background-positioning feature keeps
    working and to demonstrate it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677109

 tests/reftests/Makefile.am                       |    3 +++
 tests/reftests/background-position-simple.css    |   13 +++++++++++++
 tests/reftests/background-position-simple.ref.ui |   14 ++++++++++++++
 tests/reftests/background-position-simple.ui     |   13 +++++++++++++
 4 files changed, 43 insertions(+), 0 deletions(-)
---
diff --git a/tests/reftests/Makefile.am b/tests/reftests/Makefile.am
index 30eb1d0..59e9e29 100644
--- a/tests/reftests/Makefile.am
+++ b/tests/reftests/Makefile.am
@@ -43,6 +43,9 @@ EXTRA_DIST += \
 	background-position.css \
 	background-position.ref.ui \
 	background-position.ui \
+	background-position-simple.css \
+	background-position-simple.ref.ui \
+	background-position-simple.ui \
 	background-size.css \
 	background-size.ref.ui \
 	background-size.ui \
diff --git a/tests/reftests/background-position-simple.css b/tests/reftests/background-position-simple.css
new file mode 100644
index 0000000..f3a020c
--- /dev/null
+++ b/tests/reftests/background-position-simple.css
@@ -0,0 +1,13 @@
+ import url("reset-to-defaults.css");
+
+* {
+  background-image: linear-gradient(red, blue, red);
+  background-size: 20px 20px;
+  background-position: 50%;
+}
+
+#reference {
+  background-image: linear-gradient(blue, red, blue, red, blue);
+  background-size: initial;
+  background-position: initial;
+}
diff --git a/tests/reftests/background-position-simple.ref.ui b/tests/reftests/background-position-simple.ref.ui
new file mode 100644
index 0000000..a3367df
--- /dev/null
+++ b/tests/reftests/background-position-simple.ref.ui
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface>
+  <!-- interface-requires gtk+ 3.0 -->
+  <object class="GtkWindow" id="window1">
+    <property name="name">reference</property>
+    <property name="width_request">40</property>
+    <property name="height_request">40</property>
+    <property name="can_focus">False</property>
+    <property name="type">popup</property>
+    <child>
+      <placeholder/>
+    </child>
+  </object>
+</interface>
diff --git a/tests/reftests/background-position-simple.ui b/tests/reftests/background-position-simple.ui
new file mode 100644
index 0000000..27849e1
--- /dev/null
+++ b/tests/reftests/background-position-simple.ui
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface>
+  <!-- interface-requires gtk+ 3.0 -->
+  <object class="GtkWindow" id="window1">
+    <property name="width_request">40</property>
+    <property name="height_request">40</property>
+    <property name="can_focus">False</property>
+    <property name="type">popup</property>
+    <child>
+      <placeholder/>
+    </child>
+  </object>
+</interface>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]