惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
GbyAI
GbyAI
博客园_首页
V
Visual Studio Blog
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 叶小钗
腾讯CDC
博客园 - Franky
IT之家
IT之家
Google DeepMind News
Google DeepMind News
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
B
Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Detect Which Font Is Actually Rendering in a Brows...
SHOTA · 2026-06-27 · via DEV Community

SHOTA

getComputedStyle(element).fontFamily returns the CSS declaration: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif. That's not the font that rendered. It's a priority list. The browser picks the first one that's available and contains a glyph for the character being rendered.

For Latin text, this distinction usually doesn't matter — Windows, macOS, and Linux have converged on a small set of common system fonts. For Japanese, it matters enormously. The visual weight, stroke contrast, and letterform style of Hiragino, Yu Gothic, and Noto Sans JP are genuinely different. A site designed on macOS (where Hiragino is the system Japanese font) looks different on Windows (where Yu Gothic is the fallback).

Here's how to figure out what's actually rendering, and what I learned building Japanese Font Finder to automate it.


Why getComputedStyle Doesn't Answer the Question

getComputedStyle(el).fontFamily gives you the cascade result — what the browser received after applying all CSS rules. But it doesn't tell you which entry in the stack was selected.

The underlying question is: does this font exist on this system, and does it have a glyph for this specific character?

For Japanese, both conditions matter. A font might exist on the system but only cover a subset of kanji (common with CJK fonts that split across multiple files). The browser will use that font for characters it covers, and fall back for others.

Canvas-Based Font Detection

The classical technique uses a <canvas> element to measure text rendered with each font in the stack:

function getFallbackWidth(canvas, char) {
  const ctx = canvas.getContext('2d');
  ctx.font = `16px monospace`; // known-available baseline
  return ctx.measureText(char).width;
}

function testFont(fontName, char) {
  const canvas = document.createElement('canvas');
  const ctx = canvas.getContext('2d');
  ctx.font = `16px "${fontName}", monospace`;
  return ctx.measureText(char).width;
}

function isAvailable(fontName, testChar = '') {
  const canvas = document.createElement('canvas');
  const baseline = getFallbackWidth(canvas, testChar);
  const withFont = testFont(fontName, testChar);
  return withFont !== baseline;
}

The idea: if the font you requested is not available, the browser falls back to monospace. If the width differs from the monospace width, the requested font was used. If it's the same, it wasn't found.

The weakness: fonts can have identical glyph widths for certain characters by coincidence. You need to test multiple characters to reduce false positives, and some edge cases remain.

The document.fonts API

Modern browsers expose a CSS Font Loading API that's cleaner for checking font availability:

async function isFontLoaded(fontName) {
  await document.fonts.ready;
  return document.fonts.check(`16px "${fontName}"`);
}

document.fonts.check() returns true if the font is loaded and ready to use. But it has a subtlety: it only considers fonts that have been requested — either via @font-face declarations or because text using that font has actually rendered. System fonts often register as available without needing an explicit load.

For web fonts, you can iterate the loaded FontFaces:

async function getLoadedWebFonts() {
  await document.fonts.ready;
  const fonts = [];
  document.fonts.forEach(face => {
    fonts.push({
      family: face.family,
      weight: face.weight,
      style: face.style,
      status: face.status, // 'loaded' | 'loading' | 'error'
      source: face.toString(), // includes the URL for web fonts
    });
  });
  return fonts;
}

This gives you the web fonts. System fonts won't appear here.

Combining Both Approaches for an Element

To find the actual font rendering on a specific element, you need to:

  1. Get the computed font stack for the element
  2. Parse the font family list
  3. Check each font in order until you find one that's available
function parseComputedFontFamilies(element) {
  const computed = getComputedStyle(element).fontFamily;
  // CSS font-family values can be quoted or unquoted, comma-separated
  return computed.split(',').map(f => f.trim().replace(/^["']|["']$/g, ''));
}

async function resolveActualFont(element) {
  const families = parseComputedFontFamilies(element);

  // First pass: check document.fonts (catches web fonts)
  await document.fonts.ready;
  for (const family of families) {
    if (document.fonts.check(`16px "${family}"`)) {
      return { family, source: 'css-font-loading-api' };
    }
  }

  // Second pass: canvas fingerprinting for system fonts
  const testChar = getTestChar(element); // pick a char from the element's text
  for (const family of families) {
    if (isAvailable(family, testChar)) {
      return { family, source: 'canvas-fingerprint' };
    }
  }

  return { family: families[families.length - 1], source: 'fallback' };
}

For the test character, using a character actually present in the element text gives the most accurate result — a font might have Latin coverage but not CJK coverage.

The Character-Level Problem

Font resolution in browsers is actually per-character, not per-element. A single <p> element mixing Latin and Japanese text might render Latin characters in one font and kanji in another, even within the same font-family declaration.

<p style="font-family: 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', sans-serif;">
  Hello 世界
</p>

"Hello" renders in Helvetica Neue (Latin coverage). "世界" renders in Hiragino Kaku Gothic ProN (Helvetica Neue has no CJK glyphs). Two fonts, one element.

To handle this accurately, you'd need to test per-character range. In practice, JFF uses a heuristic: test with a representative CJK character for Japanese text, and with a Latin character for mixed content.

Content Script Constraints

If you're building this into a Chrome extension content script, a few constraints apply:

Canvas is available: Content scripts can create DOM elements including canvas. No issues.

document.fonts is available: The content script shares the page's window context, so document.fonts reflects fonts loaded on the page.

No access to font files: Content scripts can't read font binary data from the OS or from remote font URLs. You can detect that "Hiragino Kaku Gothic ProN" is rendering, but you can't read the font's metadata from within the content script.

For font metadata: Build a local lookup table. Japanese Font Finder ships a static JSON database of ~300 Japanese fonts with their vendor, category, license type, and commercial links. When a font is identified, it's looked up in the database. No API call required.


The full implementation is in Japanese Font Finder — hover any text on a Japanese page to see the resolved font with metadata. Free on Chrome Web Store.

What's the hairiest font detection edge case you've run into? The character-level fallback mixing is what bit me most — Japanese + emoji in the same element is a particular mess.