]> Pileus Git - ~andy/gtk/commitdiff
Update reference output for css parser tests
authorMatthias Clasen <mclasen@redhat.com>
Tue, 1 May 2012 00:45:46 +0000 (20:45 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 1 May 2012 00:45:46 +0000 (20:45 -0400)
Seems these were not kept up-to-date with the recent
CSS parser changes.

tests/css/parser/declarations-valid-02.ref.css
tests/css/parser/declarations-valid-03.ref.css
tests/css/parser/declarations-valid-08.ref.css
tests/css/parser/declarations-valid-24.ref.css
tests/css/parser/declarations-valid-25.ref.css

index 3f5a75ad8748d753cdbb7c9d967f4dccbe06c43c..0a74680b0e48d74f6ce28d7154302221c0c248ee 100644 (file)
@@ -1,6 +1,6 @@
 * {
   font-family: "Sans";
-  font-size: 15;
+  font-size: 15px;
   font-style: normal;
   font-variant: normal;
   font-weight: normal;
index 3f5a75ad8748d753cdbb7c9d967f4dccbe06c43c..0a74680b0e48d74f6ce28d7154302221c0c248ee 100644 (file)
@@ -1,6 +1,6 @@
 * {
   font-family: "Sans";
-  font-size: 15;
+  font-size: 15px;
   font-style: normal;
   font-variant: normal;
   font-weight: normal;
index 3f5a75ad8748d753cdbb7c9d967f4dccbe06c43c..0a74680b0e48d74f6ce28d7154302221c0c248ee 100644 (file)
@@ -1,6 +1,6 @@
 * {
   font-family: "Sans";
-  font-size: 15;
+  font-size: 15px;
   font-style: normal;
   font-variant: normal;
   font-weight: normal;
index 0dd35d649ceaea8372e0c987277d83ec2628ed82..118ae48614506575adb59e94d2c4795cbabe0bde 100644 (file)
@@ -1,3 +1,6 @@
 * {
-  transition: 150ms ease-in-out;
+  transition-delay: 0;
+  transition-duration: 150ms;
+  transition-property: all;
+  transition-timing-function: ease-in-out;
 }
index 502fa01fa546e3cc6f6956e2ef289ef866ddd007..0e3d9ae77c0e541eeca538d17c247b98453542e1 100644 (file)
@@ -1,3 +1,6 @@
 * {
-  transition: 1s linear loop;
+  transition-delay: 0;
+  transition-duration: 1s;
+  transition-property: loop;
+  transition-timing-function: linear;
 }