Update reference output for css parser tests

Seems these were not kept up-to-date with the recent
CSS parser changes.
This commit is contained in:
Matthias Clasen
2012-04-30 20:45:46 -04:00
parent af71917015
commit e9e557a353
5 changed files with 11 additions and 5 deletions

View File

@ -1,6 +1,6 @@
* { * {
font-family: "Sans"; font-family: "Sans";
font-size: 15; font-size: 15px;
font-style: normal; font-style: normal;
font-variant: normal; font-variant: normal;
font-weight: normal; font-weight: normal;

View File

@ -1,6 +1,6 @@
* { * {
font-family: "Sans"; font-family: "Sans";
font-size: 15; font-size: 15px;
font-style: normal; font-style: normal;
font-variant: normal; font-variant: normal;
font-weight: normal; font-weight: normal;

View File

@ -1,6 +1,6 @@
* { * {
font-family: "Sans"; font-family: "Sans";
font-size: 15; font-size: 15px;
font-style: normal; font-style: normal;
font-variant: normal; font-variant: normal;
font-weight: normal; font-weight: normal;

View 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;
} }

View File

@ -1,3 +1,6 @@
* { * {
transition: 1s linear loop; transition-delay: 0;
transition-duration: 1s;
transition-property: loop;
transition-timing-function: linear;
} }