about summary refs log tree commit diff stats
path: root/src/css/selectorparser.nim
Commit message (Expand)AuthorAgeFilesLines
* selectorparser: fix broken tostrbptato2024-07-251-11/+27
* selectorparser: fix parseNthChild `of' token checkbptato2024-07-071-1/+3
* cssparser: refactorbptato2024-05-011-4/+3
* css, dom: simplify ident parsing, canvas fixesbptato2024-05-011-1/+1
* Update code stylebptato2024-04-171-143/+141
* rudimentary support for <video>, <audio>bptato2024-03-131-1/+2
* dom: enumize attribute namesbptato2024-02-081-4/+10
* dom: atomize id, name, DOMTokenListbptato2024-02-081-10/+30
* Update chamebptato2024-02-071-27/+31
* Use std/* imports everywherebptato2024-01-071-3/+3
* css: add case-insensitive matchingbptato2023-12-111-11/+38
* selectorparser: enum-ize relbptato2023-12-091-17/+28
* css: change type of rvalue to char (from Rune)bptato2023-10-011-14/+18
* selectorparser: fix missing case insensitivitybptato2023-10-011-10/+16
* Use twtstr.join everywherebptato2023-10-011-1/+2
* Get rid of unicode.toLowerbptato2023-10-011-1/+1
* Move HTML parsing into Chamebptato2023-08-151-1/+2
* css: implement case insensitivitybptato2023-08-101-2/+2
* css: handle unknown tag names correctlybptato2023-07-251-4/+13
* Remove unused variablebptato2023-01-271-1/+0
* WIP selector rewritebptato2023-01-271-346/+274
* selectorparser: refactor, fix combinator bugsbptato2023-01-201-79/+79
* selectorparser: parse comma correctly in combinatorsbptato2023-01-201-0/+3
* selectorparser: do not accept invalid selectorsbptato2023-01-071-44/+78
* selectorparser: support :link, :visitedbptato2023-01-011-1/+6
* selectorparser: accept less invalid selectorsbptato2022-12-311-2/+14
* css: fix some bugs and improve cascading a bitbptato2022-12-291-1/+14
* selectorparser: fix pseudo elements on combinator selectorsbptato2022-12-281-2/+5
* layout/engine: get rid of dom dependencybptato2022-12-271-1/+1
* Display text for img tag, background-imagebptato2022-12-161-1/+1
* Fix parsing of empty combinator selectorsbptato2022-12-051-1/+6
* Add textareabptato2022-11-281-1/+1
* Fix combinator bugs + reimplement querySelectorAllbptato2022-09-011-42/+20
* Use more accurate selector terminologybptato2022-08-231-24/+27
* Fix nth-child bugs, rename select to matchbptato2022-08-231-28/+17
* Merge functional and normal pseudo-class selectorsbptato2022-08-211-95/+139
* Refactor css function selectors a bitbptato2022-08-201-28/+28
* Fix incorrect selector parsing, remove httpclient from loaderbptato2022-08-031-1/+61
* Add interactive <select>bptato2022-07-311-1/+3
* Update CSS tokenizerbptato2022-07-291-10/+10
* Implement select element displaybptato2022-07-171-1/+3
* Fix formsbptato2022-07-171-1/+3
* Rename conflicting source filesbptato2022-05-101-0/+340
tato <nincsnevem662@gmail.com> 2024-04-16 15:08:44 +0200 committer bptato <nincsnevem662@gmail.com> 2024-04-17 23:19:09 +0200 Update code style' href='/ahoang/chawan/commit/src/io/promise.nim?id=66b9574b165be62e76c7397cf0eaa8d229d42675'>66b9574b ^
80b45c0d ^

58dee598 ^

80b45c0d ^

66b9574b ^
607545c8 ^










66b9574b ^

80b45c0d ^


0edb5d32 ^
80b45c0d ^

66b9574b ^

80b45c0d ^

36390a56 ^
80b45c0d ^


36390a56 ^


80b45c0d ^

66b9574b ^

80b45c0d ^




36390a56 ^


80b45c0d ^

66b9574b ^

eff1e064 ^





66b9574b ^

80b45c0d ^





36390a56 ^


80b45c0d ^
58dee598 ^
66b9574b ^
17097052 ^
17097052 ^










58dee598 ^










1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173