mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fixed #33878 -- Switched to system fonts in CSS.
This commit is contained in:
committed by
Carlton Gibson
parent
43ddce0aeb
commit
d46cc15c51
@@ -6166,7 +6166,20 @@ class SeleniumTests(AdminSeleniumTestCase):
|
||||
]
|
||||
self.assertEqual(
|
||||
fonts,
|
||||
["Roboto", "Lucida Grande", "Verdana", "Arial", "sans-serif"],
|
||||
[
|
||||
"-apple-system",
|
||||
"BlinkMacSystemFont",
|
||||
"Segoe UI",
|
||||
"system-ui",
|
||||
"Roboto",
|
||||
"Helvetica Neue",
|
||||
"Arial",
|
||||
"sans-serif",
|
||||
"Apple Color Emoji",
|
||||
"Segoe UI Emoji",
|
||||
"Segoe UI Symbol",
|
||||
"Noto Color Emoji",
|
||||
],
|
||||
)
|
||||
|
||||
def test_search_input_filtered_page(self):
|
||||
|
||||
Reference in New Issue
Block a user