CSS Parser API

Unofficial Proposal Draft,

This version:
https://drafts.css-houdini.org/css-parser-api/
Feedback:
public-houdini@w3.org with subject line “[css-parser-api] … message topic …” (archives)
Issue Tracking:
GitHub
Inline In Spec
Editors:
Tab Atkins-Bittner
Greg Whitworth

Abstract

An API exposing the CSS parser more directly, for parsing arbitrary CSS-like languages into a mildly typed representation.

Status of this document

This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at https://www.w3.org/TR/.

GitHub Issues are preferred for discussion of this specification. When filing an issue, please put the text “css-parser-api” in the title, preferably like this: “[css-parser-api] …summary of comment…”. All issues and comments are archived.

This document was published by the CSS Working Group and the Technical Architecture Group.

This document was produced by groups operating under the W3C Patent Policy. W3C maintains a public list of any patent disclosures (CSS) and a public list of any patent disclosures (Technical Architecture Group) made in connection with the deliverables of each group; these pages also include instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.

This document is governed by the 15 September 2020 W3C Process Document.

1. Introduction

Common data-interchange / parsing formats are very valuable for reducing the learning curve of new languages, as users get to lean on their existing knowledge of the format when authoring and only have to newly learn the specifics of the language. This is why generic parsing formats like XML or JSON have become so popular.

The CSS language could benefit from this same treatment; a number of languages and tools rely on CSS-like syntax to express themselves, but they usually rely on ad-hoc parsing (often regex-based) which can be relatively fragile, and might break with CSS practices in interesting syntax corner cases. Similarly, CSS syntax is increasingly used in places like attribute values (such as the sizes attribute, or most of the SVG presentation attributes), and custom elements wanting to do the same thing similarly have to rely on ad-hoc parsing right now.

To help with these sorts of cases, this spec exposes the [css-syntax-3] parsing algorithms, and represents their results in a mildly-typed representation, simpler and more abstract than what [css-typed-om-1] does for CSS properties.

2. Parsing API

typedef (DOMString or ReadableStream) CSSStringSource;
typedef (DOMString or CSSStyleValue or CSSParserValue) CSSToken;

partial namespace CSS {
  Promise<sequence<CSSParserRule>> parseStylesheet(CSSStringSource css, optional CSSParserOptions options = {});
  Promise<sequence<CSSParserRule>> parseRuleList(CSSStringSource css, optional CSSParserOptions options = {});
  Promise<CSSParserRule> parseRule(CSSStringSource css, optional CSSParserOptions options = {});
  Promise<sequence<CSSParserRule>> parseDeclarationList(CSSStringSource css, optional CSSParserOptions options = {});
  CSSParserDeclaration parseDeclaration(DOMString css, optional CSSParserOptions options = {});
  CSSToken parseValue(DOMString css);
  sequence<CSSToken> parseValueList(DOMString css);
  sequence<sequence<CSSToken>> parseCommaValueList(DOMString css);
};

dictionary CSSParserOptions {
  object atRules;
  /* dict of at-rule name => at-rule type
     (contains decls or contains qualified rules) */
};

parseCommaValueList() is in Syntax, and thus here, because it’s actually a very common operation. It’s trivial to do yourself (just call parseValueList() and then split into an array on top-level commas), but comma-separated lists are so common that it was worthwhile to improve spec ergonomics by providing a shortcut for that functionality. Is it worth it to provide this to JS as well?

Do we handle comments? Currently I don’t; Syntax by default just drops comments, but allows an impl to preserve information about them if they want. Maybe add an option to preserve comments? If so, they can appear *anywhere*, in any API that returns a sequence.

What do we do if an unknown at-rule (not appearing in the atRules option) shows up in the results? Default to decls or rules? Or treat it more simply as just a token sequence?

Parsing stylesheets/rule lists should definitely be async, because stylesheets can be quite large. Parsing individual properties/value lists should definitely be sync, because they’re small and it would be really annoying. Parsing a single rule, tho, is unclear—is it large enough to be worth making async, or is it too annoying to be worth it?

3. Parser Values

[Exposed=Window]
interface CSSParserRule {
  /* Just a superclass. */
};

[Exposed=Window]
interface CSSParserAtRule : CSSParserRule {
  constructor(DOMString name, sequence<CSSToken> prelude, optional sequence<CSSParserRule>? body);
  readonly attribute DOMString name;
  readonly attribute FrozenArray<CSSParserValue> prelude;
  readonly attribute FrozenArray<CSSParserRule>? body;
  /* nullable to handle at-statements */
  stringifier;
};

[Exposed=Window]
interface CSSParserQualifiedRule : CSSParserRule {
  constructor(sequence<CSSToken> prelude, optional sequence<CSSParserRule>? body);
  readonly attribute FrozenArray<CSSParserValue> prelude;
  readonly attribute FrozenArray<CSSParserRule> body;
  stringifier;
};

[Exposed=Window]
interface CSSParserDeclaration : CSSParserRule {
  constructor(DOMString name, optional sequence<CSSParserRule> body);
  readonly attribute DOMString name;
  readonly attribute FrozenArray<CSSParserValue> body;
  stringifier;
};

[Exposed=Window]
interface CSSParserValue {
  /* Just a superclass. */
};

[Exposed=Window]
interface CSSParserBlock : CSSParserValue {
  constructor(DOMString name, sequence<CSSParserValue> body);
  readonly attribute DOMString name; /* "[]", "{}", or "()" */
  readonly attribute FrozenArray<CSSParserValue> body;
  stringifier;
};

[Exposed=Window]
interface CSSParserFunction : CSSParserValue {
  constructor(DOMString name, sequence<sequence<CSSParserValue>> args);
  readonly attribute DOMString name;
  readonly attribute FrozenArray<FrozenArray<CSSParserValue>> args;
  stringifier;
};

Trying to be as useful as possible, without exposing so many details that we’re unable to change tokenization in the future. In particular, whitespace and delims all get parsed into DOMStrings. Am I succeeding at this goal?

Conformance

Document conventions

Conformance requirements are expressed with a combination of descriptive assertions and RFC 2119 terminology. The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in the normative parts of this document are to be interpreted as described in RFC 2119. However, for readability, these words do not appear in all uppercase letters in this specification.

All of the text of this specification is normative except sections explicitly marked as non-normative, examples, and notes. [RFC2119]

Examples in this specification are introduced with the words “for example” or are set apart from the normative text with class="example", like this:

This is an example of an informative example.

Informative notes begin with the word “Note” and are set apart from the normative text with class="note", like this:

Note, this is an informative note.

Advisements are normative sections styled to evoke special attention and are set apart from other normative text with <strong class="advisement">, like this: UAs MUST provide an accessible alternative.

Conformance classes

Conformance to this specification is defined for three conformance classes:

style sheet
A CSS style sheet.
renderer
A UA that interprets the semantics of a style sheet and renders documents that use them.
authoring tool
A UA that writes a style sheet.

A style sheet is conformant to this specification if all of its statements that use syntax defined in this module are valid according to the generic CSS grammar and the individual grammars of each feature defined in this module.

A renderer is conformant to this specification if, in addition to interpreting the style sheet as defined by the appropriate specifications, it supports all the features defined by this specification by parsing them correctly and rendering the document accordingly. However, the inability of a UA to correctly render a document due to limitations of the device does not make the UA non-conformant. (For example, a UA is not required to render color on a monochrome monitor.)

An authoring tool is conformant to this specification if it writes style sheets that are syntactically correct according to the generic CSS grammar and the individual grammars of each feature in this module, and meet all other conformance requirements of style sheets as described in this module.

Partial implementations

So that authors can exploit the forward-compatible parsing rules to assign fallback values, CSS renderers must treat as invalid (and ignore as appropriate) any at-rules, properties, property values, keywords, and other syntactic constructs for which they have no usable level of support. In particular, user agents must not selectively ignore unsupported component values and honor supported values in a single multi-value property declaration: if any value is considered invalid (as unsupported values must be), CSS requires that the entire declaration be ignored.

Implementations of Unstable and Proprietary Features

To avoid clashes with future stable CSS features, the CSSWG recommends following best practices for the implementation of unstable features and proprietary extensions to CSS.

Non-experimental implementations

Once a specification reaches the Candidate Recommendation stage, non-experimental implementations are possible, and implementors should release an unprefixed implementation of any CR-level feature they can demonstrate to be correctly implemented according to spec.

To establish and maintain the interoperability of CSS across implementations, the CSS Working Group requests that non-experimental CSS renderers submit an implementation report (and, if necessary, the testcases used for that implementation report) to the W3C before releasing an unprefixed implementation of any CSS features. Testcases submitted to W3C are subject to review and correction by the CSS Working Group.

Further information on submitting testcases and implementation reports can be found from on the CSS Working Group’s website at http://www.w3.org/Style/CSS/Test/. Questions should be directed to the public-css-testsuite@w3.org mailing list.

Index

Terms defined by this specification

Terms defined by reference

References

Normative References

[CSS-SYNTAX-3]
Tab Atkins Jr.; Simon Sapin. CSS Syntax Module Level 3. 16 July 2019. CR. URL: https://www.w3.org/TR/css-syntax-3/
[CSS-TYPED-OM-1]
Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. CSS Typed OM Level 1. 10 April 2018. WD. URL: https://www.w3.org/TR/css-typed-om-1/
[CSSOM-1]
Simon Pieters; Glenn Adams. CSS Object Model (CSSOM). 17 March 2016. WD. URL: https://www.w3.org/TR/cssom-1/
[HTML]
Anne van Kesteren; et al. HTML Standard. Living Standard. URL: https://html.spec.whatwg.org/multipage/
[RFC2119]
S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. March 1997. Best Current Practice. URL: https://tools.ietf.org/html/rfc2119
[STREAMS]
Adam Rice; Domenic Denicola; 吉野剛史 (Takeshi Yoshino). Streams Standard. Living Standard. URL: https://streams.spec.whatwg.org/
[WebIDL]
Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/

IDL Index

typedef (DOMString or ReadableStream) CSSStringSource;
typedef (DOMString or CSSStyleValue or CSSParserValue) CSSToken;

partial namespace CSS {
  Promise<sequence<CSSParserRule>> parseStylesheet(CSSStringSource css, optional CSSParserOptions options = {});
  Promise<sequence<CSSParserRule>> parseRuleList(CSSStringSource css, optional CSSParserOptions options = {});
  Promise<CSSParserRule> parseRule(CSSStringSource css, optional CSSParserOptions options = {});
  Promise<sequence<CSSParserRule>> parseDeclarationList(CSSStringSource css, optional CSSParserOptions options = {});
  CSSParserDeclaration parseDeclaration(DOMString css, optional CSSParserOptions options = {});
  CSSToken parseValue(DOMString css);
  sequence<CSSToken> parseValueList(DOMString css);
  sequence<sequence<CSSToken>> parseCommaValueList(DOMString css);
};

dictionary CSSParserOptions {
  object atRules;
  /* dict of at-rule name => at-rule type
     (contains decls or contains qualified rules) */
};

[Exposed=Window]
interface CSSParserRule {
  /* Just a superclass. */
};

[Exposed=Window]
interface CSSParserAtRule : CSSParserRule {
  constructor(DOMString name, sequence<CSSToken> prelude, optional sequence<CSSParserRule>? body);
  readonly attribute DOMString name;
  readonly attribute FrozenArray<CSSParserValue> prelude;
  readonly attribute FrozenArray<CSSParserRule>? body;
  /* nullable to handle at-statements */
  stringifier;
};

[Exposed=Window]
interface CSSParserQualifiedRule : CSSParserRule {
  constructor(sequence<CSSToken> prelude, optional sequence<CSSParserRule>? body);
  readonly attribute FrozenArray<CSSParserValue> prelude;
  readonly attribute FrozenArray<CSSParserRule> body;
  stringifier;
};

[Exposed=Window]
interface CSSParserDeclaration : CSSParserRule {
  constructor(DOMString name, optional sequence<CSSParserRule> body);
  readonly attribute DOMString name;
  readonly attribute FrozenArray<CSSParserValue> body;
  stringifier;
};

[Exposed=Window]
interface CSSParserValue {
  /* Just a superclass. */
};

[Exposed=Window]
interface CSSParserBlock : CSSParserValue {
  constructor(DOMString name, sequence<CSSParserValue> body);
  readonly attribute DOMString name; /* "[]", "{}", or "()" */
  readonly attribute FrozenArray<CSSParserValue> body;
  stringifier;
};

[Exposed=Window]
interface CSSParserFunction : CSSParserValue {
  constructor(DOMString name, sequence<sequence<CSSParserValue>> args);
  readonly attribute DOMString name;
  readonly attribute FrozenArray<FrozenArray<CSSParserValue>> args;
  stringifier;
};

Issues Index

parseCommaValueList() is in Syntax, and thus here, because it’s actually a very common operation. It’s trivial to do yourself (just call parseValueList() and then split into an array on top-level commas), but comma-separated lists are so common that it was worthwhile to improve spec ergonomics by providing a shortcut for that functionality. Is it worth it to provide this to JS as well?
Do we handle comments? Currently I don’t; Syntax by default just drops comments, but allows an impl to preserve information about them if they want. Maybe add an option to preserve comments? If so, they can appear *anywhere*, in any API that returns a sequence.
What do we do if an unknown at-rule (not appearing in the atRules option) shows up in the results? Default to decls or rules? Or treat it more simply as just a token sequence?
Parsing stylesheets/rule lists should definitely be async, because stylesheets can be quite large. Parsing individual properties/value lists should definitely be sync, because they’re small and it would be really annoying. Parsing a single rule, tho, is unclear—is it large enough to be worth making async, or is it too annoying to be worth it?
Trying to be as useful as possible, without exposing so many details that we’re unable to change tokenization in the future. In particular, whitespace and delims all get parsed into DOMStrings. Am I succeeding at this goal?