← Chrome 148 reference

v148 · web api · covered on mdn

Content type in Resource Timing

A new contentType read-only property on PerformanceResourceTiming that exposes a standardised MIME type string for each fetched resource. Enables performance tooling to filter, group, and analyse resource loads by content type without requiring additional server-side instrumentation.

this feature is documented on MDN

MDN: PerformanceResourceTiming.contentType

MDN documents the contentType property, its MIME type format, privacy constraints (cross-origin timing), and usage examples with PerformanceObserver. gendn doesn't duplicate that here.

quick reference

PropertyPerformanceResourceTiming.contentType
Typestring — a minimised and standardised MIME type (e.g. "text/html", "image/png", "application/json")
AccessVia PerformanceObserver with type: "resource", or performance.getEntriesByType("resource")
Exampleentry.contentType"text/javascript"
Shipped inChrome 148 (desktop + Android)
ChromeStatus5156068351541248 — Content type in Resource Timing
SpecResource Timing Level 2 — W3C
Source: MDN, chromestatus, May 2026.