From f10c23436100aa3b4849e9cdeac36e0f61008ef1 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 28 May 2023 07:57:40 -0400 Subject: [PATCH] css: Add a test for non-ASCII font family This came up in #5852, so make sure that it works. --- testsuite/css/parser/font-family.css | 4 ++++ testsuite/css/parser/font-family.ref.css | 4 ++++ 2 files changed, 8 insertions(+) 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: "楷体"; +} -- 2.30.2