tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

emoji-fallback-2.html (634B)


      1 <!DOCTYPE HTML>
      2 <html lang="en-US">
      3 <head>
      4 <meta charset="utf-8">
      5 <title>emoji fallback to text font</title>
      6 <style>
      7 div {
      8  font-size: 48pt;
      9 }
     10 #test {
     11  /* Because of the presence of the U+FE0E variation selectors, we should prefer the
     12     the monochrome fonts even though color-emoji fonts are listed first. */
     13  font-family: 'Segoe UI Emoji', 'Twemoji Mozilla', 'Apple Color Emoji', 'Noto Color Emoji',
     14               'Segoe UI Symbol', 'Apple Symbols', 'Noto Sans Symbols';
     15  font-size: 24pt;
     16 }
     17 </style>
     18 </head>
     19 <body>
     20 
     21 <div><span id=test>&#x231a;&#xfe0e;&#x231b;&#xfe0e;&#x1f300;&#xfe0e;&#x1f301;&#xfe0e;</div>
     22 
     23 </body>
     24 </html>