From: Matthias Clasen Date: Sun, 28 May 2023 11:57:40 +0000 (-0400) Subject: css: Add a test for non-ASCII font family X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~1^2~206^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f10c23436100aa3b4849e9cdeac36e0f61008ef1;p=gtk4.git css: Add a test for non-ASCII font family This came up in #5852, so make sure that it works. --- diff --git a/testsuite/css/parser/font-family.css b/testsuite/css/parser/font-family.css index fbbc82b7c6..53fd75e7f9 100644 --- a/testsuite/css/parser/font-family.css +++ b/testsuite/css/parser/font-family.css @@ -25,3 +25,7 @@ f { g { font-family: Macaroni al dente, Tomato sauce; } + +h { + font-family: 楷体; +} diff --git a/testsuite/css/parser/font-family.ref.css b/testsuite/css/parser/font-family.ref.css index 92f559c67d..12c0705468 100644 --- a/testsuite/css/parser/font-family.ref.css +++ b/testsuite/css/parser/font-family.ref.css @@ -25,3 +25,7 @@ f { g { font-family: "Macaroni al dente", "Tomato sauce"; } + +h { + font-family: "楷体"; +}