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:
@ -284,7 +284,6 @@ test_data = \
|
|||||||
declarations-valid-17.css \
|
declarations-valid-17.css \
|
||||||
declarations-valid-17.ref.css \
|
declarations-valid-17.ref.css \
|
||||||
declarations-valid-18.css \
|
declarations-valid-18.css \
|
||||||
declarations-valid-18.errors \
|
|
||||||
declarations-valid-18.ref.css \
|
declarations-valid-18.ref.css \
|
||||||
declarations-valid-19.css \
|
declarations-valid-19.css \
|
||||||
declarations-valid-19.ref.css \
|
declarations-valid-19.ref.css \
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
* { engine: definitelydoesnotexist }
|
* { font: definitelydoesnotexist }
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
declarations-valid-18.css:1: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
* {
|
||||||
|
font-family: "definitelydoesnotexist";
|
||||||
|
font-size: initial;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-style: normal;
|
||||||
|
font-variant: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user