HTML — briefings & field notes

Five dated news digests and five engineering Q&A entries. Each item cites primary documentation or release artifacts (not generic placeholders).

Latest news

News

WHATWG publishes periodic HTML review drafts for patent-track snapshots

The HTML Standard’s January 2025 review draft mirrors the living standard at a fixed point for legal review—not a separate browser implementation target.

Engineers should continue to implement the current living standard URL for day-to-day work.

News

July 2025 review draft continues the same WHATWG publication cadence

Later 2025 drafts follow identical rules: they exist for patent policy obligations and may omit the freshest editor fixes present in the living tree.

Use them when counsel requests a dated snapshot, not when authoring tutorials.

News

The single-page HTML Standard remains the canonical reference for element semantics

MDN’s HTML attribute references link back to WHATWG definitions for attributes like loading, fetchpriority, and form control behaviors.

When in doubt, open the algorithm sections instead of relying on secondary summaries.

News

DOM Living Standard review drafts track adjacent parser and event model changes

HTML-heavy applications (drag-and-drop, ranges, mutation observers) often require cross-reading the DOM Standard review drafts when filing browser bugs.

Attach both HTML and DOM snapshot links to WHATWG issues for clarity.

News

W3C Web Application Security Working Group still informs mixed content policies referenced by browsers

While WHATWG defines HTML behavior, mixed content upgrade rules and secure contexts intersect with W3C/WHATWG security documentation that MDN summarizes.

Security engineers should read primary fetch/mixed-content specs when tuning CSP.

Questions & answers

Q&A

Should I implement a WHATWG review draft in my browser engine fork?

No—WHATWG explicitly directs implementers to the living standard; review drafts freeze text for patent review and can miss subsequent corrections.

Use review drafts only for legal or compliance comparisons.

Q&A

How do I cite HTML semantics in an accessibility audit?

Quote the WHATWG element definitions for native roles, then map them to WAI-ARIA Authoring Practices patterns when composite widgets are unavoidable.

Keep permalinks to specific multipage sections for audit trail clarity.

Q&A

Why does my parser output differ between browsers if HTML5 “fixed” markup?

The living standard evolves; browsers ship at different cadences. Consult browser release notes plus the HTML issue tracker when discrepancies appear.

Automate visual regression tests for form controls especially.

Q&A

Where is the authoritative definition of the <code>template</code> element?

The HTML multipage spec hosts the template section describing inert subtree behavior and parsing rules that shadow DOM polyfills depended on.

MDN summarizes but should not replace spec links in security reviews.

Q&A

How do DOM review drafts relate to HTML forms algorithms?

Forms rely on DOM events and ranges; when a regression spans layers, file issues with repro steps against both specs’ living URLs.

Include reduced HTML and JS that only touches public APIs.