Update another css parser test

This test was using the engine property, which has
been deprecated and thus generates an error now.
Instead, use the font property.
This commit is contained in:
Matthias Clasen
2015-12-21 14:17:28 -05:00
parent dcc3dd1211
commit e567f23bcd
4 changed files with 9 additions and 3 deletions

View File

@ -284,7 +284,6 @@ test_data = \
declarations-valid-17.css \
declarations-valid-17.ref.css \
declarations-valid-18.css \
declarations-valid-18.errors \
declarations-valid-18.ref.css \
declarations-valid-19.css \
declarations-valid-19.ref.css \

View File

@ -1 +1 @@
* { engine: definitelydoesnotexist }
* { font: definitelydoesnotexist }

View File

@ -1 +0,0 @@
declarations-valid-18.css:1: error: GTK_CSS_PROVIDER_ERROR_SYNTAX

View File

@ -0,0 +1,8 @@
* {
font-family: "definitelydoesnotexist";
font-size: initial;
font-stretch: normal;
font-style: normal;
font-variant: normal;
font-weight: normal;
}