majodev / google-webfonts-helper

A Hassle-Free Way to Self-Host Google Fonts. Get eot, ttf, svg, woff and woff2 files + CSS snippets
https://gwfh.mranftl.com
MIT License
12.02k stars 420 forks source link

Noto Color Emoji: missing characters? #184

Open alopatindev opened 2 months ago

alopatindev commented 2 months ago
<head>
  <style>
    @font-face {
      font-display: swap;
      font-family: 'Noto Color Emoji';
      font-style: normal;
      font-weight: 400;
      src: url('/tmp/noto-color-emoji-v30-emoji-regular.woff2') format('woff2');
    }

    body {
      font-family: 'Noto Color Emoji';
    }
  </style>
</head>

<body>
  🛳🏞️🔮🧭🥝🦌😍❤️⭐💎🪙🌚
</body>

Shows nothing in ungoogled chromium 122.0.6261.111 with rm -f /tmp/noto-color-emoji-v30-emoji-regular.woff2 ; wget -qO - "https://gwfh.mranftl.com/api/fonts/noto-color-emoji?download=zip&subsets=emoji&variants=regular&formats=woff2" | bsdtar -xvf- -C /tmp

Works with rm -f /tmp/noto-color-emoji-v30-emoji-regular.woff2 ; wget -qO /tmp/noto-color-emoji-v30-emoji-regular.woff2 'https://fonts.gstatic.com/s/notocoloremoji/v30/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFabsE4tq3luCC7p-aXxcn.2.woff2' (source)

xpe commented 1 month ago

@alopatindev With the goal of isolating the bug, I have a question for you: have you tried the above in a different browser?