MCPcopy Create free account
hub / github.com/CanadaHonk/shadow / CSSRegularAtRule

Class CSSRegularAtRule

engine/cssparser.js:123–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121}
122
123class CSSRegularAtRule {
124 static {
125 this.prototype.type = RuleType.RegularAt;
126 this.prototype.atName = '';
127 this.prototype.atCond = '';
128 }
129
130 constructor(name, cond) {
131 this.atName = name;
132 this.atCond = cond;
133 }
134}
135
136class CSSNestedAtRule {
137 static {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected