css-parser-api icon indicating copy to clipboard operation
css-parser-api copied to clipboard

This is the repo where the CSS Houdini parser API will be worked on

Results 9 css-parser-api issues
Sort by recently updated
recently updated
newest added

Hi @tabatkins! What's the status of this incubation? It seems there hasn't been much activity in a few years. Did it maybe get taken up by the CSS WG? Also,...

Please double-check that these are spelled, sufficiently linked, etc. as you'd like.

Think there was a "recieve" too many in there?

This spec doesn’t seem contain an API to parse CSS selectors. I would like to create a function that turns a CSS selector into a HTML element. For example, ```js...

Shorthands are one of the CSS niceties that other languages using CSSish syntax should be able to use without a lot of difficulty. One of the options the parser should...

TypedOM exposes the internals of style blocks as `.styleMap`, because CSS can rely on (1) multiple declarations with the same property name being collapsed to one, and (2) relative order...

You should be able to create various instances with various options and move from there. Instances should have a way to decide if a declaration is valid or not; so...

When you have multiple declarations with the same property name in a single block, CSS automatically collapses them for you, retaining only the last one. While we shouldn't opt the...