Skip to content

Commit 59b1161

Browse files
committed
feat: Add css-position-1 and css-position-2 modules with tests
1 parent 4cd3ecd commit 59b1161

File tree

2 files changed

+95
-0
lines changed

2 files changed

+95
-0
lines changed

src/syntax-definitions.ts

+14
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,20 @@ export const cssSyntaxDefinitions: Record<CssLevel, SyntaxDefinition> = {
414414
* createParser({ modules: ['css-position-3'] })
415415
*/
416416
export const cssModules = {
417+
'css-position-1': {
418+
pseudoClasses: {
419+
definitions: {
420+
NoArgument: ['static', 'relative', 'absolute']
421+
}
422+
}
423+
},
424+
'css-position-2': {
425+
pseudoClasses: {
426+
definitions: {
427+
NoArgument: ['static', 'relative', 'absolute', 'fixed']
428+
}
429+
}
430+
},
417431
'css-position-3': {
418432
pseudoClasses: {
419433
definitions: {

test/modules.test.ts

+81
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,87 @@
11
import {createParser, ast} from './import.js';
22

33
describe('CSS Modules', () => {
4+
describe('css-position-1', () => {
5+
it('should parse position-1 pseudo-classes when module is enabled', () => {
6+
const parse = createParser({
7+
modules: ['css-position-1']
8+
});
9+
10+
expect(parse(':static')).toEqual(
11+
ast.selector({
12+
rules: [
13+
ast.rule({
14+
items: [ast.pseudoClass({name: 'static'})]
15+
})
16+
]
17+
})
18+
);
19+
20+
expect(parse(':relative')).toEqual(
21+
ast.selector({
22+
rules: [
23+
ast.rule({
24+
items: [ast.pseudoClass({name: 'relative'})]
25+
})
26+
]
27+
})
28+
);
29+
30+
expect(parse(':absolute')).toEqual(
31+
ast.selector({
32+
rules: [
33+
ast.rule({
34+
items: [ast.pseudoClass({name: 'absolute'})]
35+
})
36+
]
37+
})
38+
);
39+
40+
// Should reject fixed as it's not in position-1
41+
const strictParse = createParser({
42+
modules: ['css-position-1'],
43+
syntax: {
44+
pseudoClasses: {
45+
unknown: 'reject'
46+
}
47+
}
48+
});
49+
50+
expect(() => strictParse(':fixed')).toThrow('Unknown pseudo-class: "fixed".');
51+
});
52+
});
53+
54+
describe('css-position-2', () => {
55+
it('should parse position-2 pseudo-classes when module is enabled', () => {
56+
const parse = createParser({
57+
modules: ['css-position-2']
58+
});
59+
60+
// Position-2 adds fixed
61+
expect(parse(':fixed')).toEqual(
62+
ast.selector({
63+
rules: [
64+
ast.rule({
65+
items: [ast.pseudoClass({name: 'fixed'})]
66+
})
67+
]
68+
})
69+
);
70+
71+
// Should reject sticky as it's not in position-2
72+
const strictParse = createParser({
73+
modules: ['css-position-2'],
74+
syntax: {
75+
pseudoClasses: {
76+
unknown: 'reject'
77+
}
78+
}
79+
});
80+
81+
expect(() => strictParse(':sticky')).toThrow('Unknown pseudo-class: "sticky".');
82+
});
83+
});
84+
485
describe('css-position-3', () => {
586
it('should parse position pseudo-classes when module is enabled', () => {
687
const parse = createParser({

0 commit comments

Comments
 (0)