summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2012-01-17 17:09:30 +0100
committerBenjamin Otte <otte@redhat.com>2012-02-02 03:14:02 +0100
commitf1c73fcc0c052a0bea3705624e078874274897d4 (patch)
treecd84c01e3874575651a1c32904143d14a4b35173 /tests
parentcc83986eb87d582e5edc87019fe48dca85fdf4fd (diff)
downloadgtk+-f1c73fcc0c052a0bea3705624e078874274897d4.tar.gz
reftests: Add 'px' to all properties
Diffstat (limited to 'tests')
-rw-r--r--tests/reftests/background-area.css2
-rw-r--r--tests/reftests/background-origin.css2
-rw-r--r--tests/reftests/border-color-default.css2
-rw-r--r--tests/reftests/border-image-excess-size.css2
-rw-r--r--tests/reftests/border-image-gradient.css4
-rw-r--r--tests/reftests/border-image-url.css4
-rw-r--r--tests/reftests/border-radius-clamp.css4
-rw-r--r--tests/reftests/border-style-none.css6
-rw-r--r--tests/reftests/border-style.css2
-rw-r--r--tests/reftests/box-shadow-spec-inset.css10
-rw-r--r--tests/reftests/no-colors.css2
-rw-r--r--tests/reftests/shorthand-entry-border.css10
12 files changed, 25 insertions, 25 deletions
diff --git a/tests/reftests/background-area.css b/tests/reftests/background-area.css
index e730fffb36..73d6bd91ea 100644
--- a/tests/reftests/background-area.css
+++ b/tests/reftests/background-area.css
@@ -12,7 +12,7 @@ GtkWindow {
}
GtkButton {
- border-width: 5;
+ border-width: 5px;
border-style: solid;
border-color: rgba(255,0,0,0.6);
padding: 10;
diff --git a/tests/reftests/background-origin.css b/tests/reftests/background-origin.css
index 22b22eeb2f..f665eb93fc 100644
--- a/tests/reftests/background-origin.css
+++ b/tests/reftests/background-origin.css
@@ -13,7 +13,7 @@ GtkWindow {
}
GtkButton {
- border-width: 5;
+ border-width: 5px;
border-style: solid;
border-color: rgba(255,0,0,0.5);
padding: 10;
diff --git a/tests/reftests/border-color-default.css b/tests/reftests/border-color-default.css
index 5eba00fbba..4efe0e0963 100644
--- a/tests/reftests/border-color-default.css
+++ b/tests/reftests/border-color-default.css
@@ -1,7 +1,7 @@
* {
border-image: none;
border-style: solid;
- border-width: 5;
+ border-width: 5px;
}
GtkButton {
diff --git a/tests/reftests/border-image-excess-size.css b/tests/reftests/border-image-excess-size.css
index 80af2b56fe..ffad2d9dec 100644
--- a/tests/reftests/border-image-excess-size.css
+++ b/tests/reftests/border-image-excess-size.css
@@ -4,7 +4,7 @@
background-image: none;
background-color: #000;
border-style: solid;
- border-width: 1;
+ border-width: 1px;
padding: 0;
border-radius: 0;
}
diff --git a/tests/reftests/border-image-gradient.css b/tests/reftests/border-image-gradient.css
index c01629a32f..6cfe44442f 100644
--- a/tests/reftests/border-image-gradient.css
+++ b/tests/reftests/border-image-gradient.css
@@ -14,11 +14,11 @@
to(green));
border-image-slice: 1;
border-image-repeat: stretch;
- border-width: 1 2 2 1;
+ border-width: 1px 2px 2px 1px;
}
.button-not-image {
border-color: green;
border-style: solid;
- border-width: 1 2 2 1;
+ border-width: 1px 2px 2px 1px;
}
diff --git a/tests/reftests/border-image-url.css b/tests/reftests/border-image-url.css
index a1fdb7e1ea..9bc2a53572 100644
--- a/tests/reftests/border-image-url.css
+++ b/tests/reftests/border-image-url.css
@@ -3,14 +3,14 @@
border-image: url("green-20x20.png") 1 stretch;
- border-width: 1 2 2 1;
+ border-width: 1px 2px 2px 1px;
border-radius: 0;
}
.button-not-image {
border-color: green;
border-style: solid;
- border-width: 1 2 2 1;
+ border-width: 1px 2px 2px 1px;
border-radius: 0;
border-image: none;
}
diff --git a/tests/reftests/border-radius-clamp.css b/tests/reftests/border-radius-clamp.css
index f7b3da6917..d8ec308fa3 100644
--- a/tests/reftests/border-radius-clamp.css
+++ b/tests/reftests/border-radius-clamp.css
@@ -1,9 +1,9 @@
.progressbar {
engine: none;
border-image: none;
- border-radius: 25;
+ border-radius: 25px;
}
#reference .progressbar {
- border-radius: 10;
+ border-radius: 10px;
}
diff --git a/tests/reftests/border-style-none.css b/tests/reftests/border-style-none.css
index 0c3bde8e56..06154c8228 100644
--- a/tests/reftests/border-style-none.css
+++ b/tests/reftests/border-style-none.css
@@ -7,13 +7,13 @@
GtkButton {
background-color: purple;
border-style: none;
- border-width: 5;
- border-radius: 15;
+ border-width: 5px;
+ border-radius: 15px;
}
#reference {
border-style: solid;
border-width: 0;
- border-radius: 15;
+ border-radius: 15px;
}
diff --git a/tests/reftests/border-style.css b/tests/reftests/border-style.css
index da287318c4..cf770d9603 100644
--- a/tests/reftests/border-style.css
+++ b/tests/reftests/border-style.css
@@ -3,7 +3,7 @@
GtkButton {
background-color: red;
border-color: green;
- border-width: 1;
+ border-width: 1px;
}
.button-top-left {
diff --git a/tests/reftests/box-shadow-spec-inset.css b/tests/reftests/box-shadow-spec-inset.css
index 8cc26263fb..337036420e 100644
--- a/tests/reftests/box-shadow-spec-inset.css
+++ b/tests/reftests/box-shadow-spec-inset.css
@@ -10,7 +10,7 @@ GtkButton {
.row1, .row2, .row3 {
/*border:5px solid blue;*/
- border-width: 5;
+ border-width: 5px;
border-style: solid;
border-color: blue;
background-color:orange;
@@ -40,7 +40,7 @@ GtkButton {
}
.reference-border {
- border-width: 5;
+ border-width: 5px;
border-style: solid;
border-color: blue;
}
@@ -55,14 +55,14 @@ GtkButton {
/*
.reference-padding-radius {
- border-radius: 15
+ border-radius: 15px
}
.reference-radii1 {
- border-radius: 15 0 10;
+ border-radius: 15px 0 10px;
}
.reference-radii2 {
- border-radius: 5 0 10;
+ border-radius: 5px 0 10px;
}
*/
diff --git a/tests/reftests/no-colors.css b/tests/reftests/no-colors.css
index 6091b9fabf..587634cb96 100644
--- a/tests/reftests/no-colors.css
+++ b/tests/reftests/no-colors.css
@@ -3,5 +3,5 @@
color: transparent;
border-color: transparent;
border-style: solid;
- border-width: 1;
+ border-width: 1px;
}
diff --git a/tests/reftests/shorthand-entry-border.css b/tests/reftests/shorthand-entry-border.css
index eca547b42b..0d1d4631d8 100644
--- a/tests/reftests/shorthand-entry-border.css
+++ b/tests/reftests/shorthand-entry-border.css
@@ -4,18 +4,18 @@
}
GtkWidget {
- border-right-width: 5;
+ border-right-width: 5px;
}
GtkEntry {
- border-width: 10 20;
+ border-width: 10px 20px;
}
.entry {
- border-left-width: 10;
- border-right-width: 10;
+ border-left-width: 10px;
+ border-right-width: 10px;
}
#reference {
- border-width: 10;
+ border-width: 10px;
}