blob: 42f4d09ec7cf359b2fb33bc6531a6d1b683b1e11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>emoji fallback to color font</title>
<style>
div {
font-size: 48pt;
}
#test {
/* Because of the presence of the U+FE0F variation selectors, we should find
a color-emoji font even though the b/w symbol fonts are listed first. */
font-family: 'Segoe UI Symbol', 'Apple Symbols', 'Noto Sans Symbols',
'Segoe UI Emoji', 'Twemoji Mozilla', 'Apple Color Emoji', 'Noto Color Emoji';
font-size: 24pt;
}
</style>
</head>
<body>
<div><span id=test>🅰️🅱️</div>
</body>
</html>
|