Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/parser/cssNodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export enum NodeType {
PropertyAtRule,
Container,
ModuleConfig,
StartingStyleAtRule,
SelectorList
}

Expand Down Expand Up @@ -1225,6 +1226,17 @@ export class PropertyAtRule extends BodyDeclaration {

}

export class StartingStyleAtRule extends BodyDeclaration {

constructor(offset: number, length: number) {
super(offset, length);
}

get type(): NodeType {
return NodeType.StartingStyleAtRule;
}
}

export class Document extends BodyDeclaration {

constructor(offset: number, length: number) {
Expand Down
26 changes: 26 additions & 0 deletions src/parser/cssParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ export class Parser {
|| this._parseNamespace()
|| this._parseDocument()
|| this._parseContainer(isNested)
|| this._parseStartingStyleAtRule(isNested)
|| this._parseUnknownAtRule();
}

Expand Down Expand Up @@ -366,6 +367,7 @@ export class Parser {
|| this._parseSupports(true)
|| this._parseLayer(true)
|| this._parseContainer(true)
|| this._parseStartingStyleAtRule(true)
|| this._parseUnknownAtRule();
}

Expand Down Expand Up @@ -901,6 +903,30 @@ export class Parser {
return this._parseBody(node, this._parseDeclaration.bind(this));
}

_parseStartingStyleAtRule(isNested = false) {
if (!this.peekKeyword("@starting-style")) {
return null;
}

const node = this.create(nodes.StartingStyleAtRule);
this.consumeToken() // @starting-style

return this._parseBody(node, this._parseStartingStyleDeclaration.bind(this, isNested));
}

// this method is the same as ._parseContainerDeclaration()
// which is the same as ._parseMediaDeclaration(),
// _parseSupportsDeclaration, and ._parseLayerDeclaration()
_parseStartingStyleDeclaration(isNested = false) {
if (isNested) {
// if nested, the body can contain rulesets, but also declarations
return this._tryParseRuleset(true)
|| this._tryToParseDeclaration()
|| this._parseStylesheetStatement(true);
}
return this._parseStylesheetStatement(false);
}

public _parseLayer(isNested: boolean = false): nodes.Node | null {
// @layer layer-name {rules}
// @layer layer-name;
Expand Down
9 changes: 9 additions & 0 deletions src/test/css/nodes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,15 @@ suite('CSS - Nodes', () => {
assertNodes(fn, '@keyframes name { from { top: 0px} to { top: 100px } }', 'keyframe,identifier,...,keyframeselector,...,declaration,...,keyframeselector,...,declaration,...');
});

test('Starting-style', function () {
function fn(input: string): nodes.Node {
let parser = new Parser();
let node = parser.internalParse(input, parser._parseStartingStyleAtRule)!;
return node;
}
assertNodes(fn, '@starting-style { p { opacity: 0; } }', 'startingstyleatrule,declarations,ruleset,...,selector,...,elementnameselector,...,...,...,...,...,...,...,...,...');
});

test('UnicodeRange', function () {
function fn(input: string): nodes.Node {
let parser = new Parser();
Expand Down
9 changes: 9 additions & 0 deletions src/test/css/parser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,15 @@ suite('CSS - Parser', () => {
assertNode(`@container card (inline-size > 30em) { @container style(--responsive: true) {} }`, parser, parser._parseStylesheet.bind(parser));
});

test('@starting-style', function () {
const parser = new Parser();
// These assertions would still hold if @starting-style blocks were being processed as unknown at-rules
// Parsing into the expected AST is instead tested in nodes.test.ts
assertNode(`@starting-style { p { background-color: skyblue; } }`, parser, parser._parseStylesheet.bind(parser));
assertNode(`p { @starting-style { background-color: skyblue; } }`, parser, parser._parseStylesheet.bind(parser));
assertNode(`p { @starting-style { @layer {} } }`, parser, parser._parseStylesheet.bind(parser));
});

test('@container query length units', function () {
const parser = new Parser();
assertNode(`@container (min-width: 700px) { .card h2 { font-size: max(1.5em, 1.23em + 2cqi); } }`, parser, parser._parseStylesheet.bind(parser));
Expand Down