about summary refs log tree commit diff stats
path: root/src/css
Commit message (Collapse)AuthorAgeFilesLines
...
* Optimize dombptato2022-07-212-15/+27
|
* Throw out unused cells() functionsbptato2022-07-201-31/+0
| | | | | They were an artifact of the previous layout engine, and are not needed anymore.
* Fix a parser bugbptato2022-07-171-4/+1
| | | | Plus a few warnings.
* Implement select element displaybptato2022-07-172-1/+10
| | | | | You can't actually use them yet. But at least they don't flood the screen with options now.
* Fix formsbptato2022-07-172-40/+20
|
* Fix StyledNode cachingbptato2022-07-171-93/+37
|
* Use StyledNodes instead of passing the entire DOM to the layout enginebptato2022-07-163-33/+196
| | | | | This moves pseudo element generation to the cascading phase. For now it also breaks style caching.
* Fix and clean up some dom-based featuresbptato2022-07-111-33/+3
|
* Implement HTML5 parsingbptato2022-07-112-36/+38
| | | | | | | Completely replaced the previous HTML2 (?) parser, which was a bad re-implementation of w3m's parser in the first place. Now we have a (sort of) compliant HTML5 parser. Needs tests, badly.
* Add querySelector and querySelectorAll for Elementbptato2022-05-231-0/+45
|
* SpecifiedValue -> ComputedValuebptato2022-05-132-34/+34
| | | | Actually it's neither but ComputedValue is more accurate.
* Rename conflicting source filesbptato2022-05-107-11/+11
| | | | Nim can't really differentiate between them, unfortunately.
* Add support for :nth-child, implement textContentbptato2022-05-102-4/+23
|
* Some refactoring for layout engine rewritebptato2022-05-101-1/+1
|
* Incomplete background-color implementationbptato2022-02-141-5/+16
| | | | Has numerous flaws which will have to be corrected later.
* Some loader polishingbptato2022-02-091-0/+1
|
* Optimize :is selectorbptato2022-01-301-1/+51
|
* Implement list-style-positionbptato2022-01-301-3/+22
|
* Implement formsbptato2022-01-291-1/+5
| | | | | | Note: for now, only input tags are supported. Also the implementation is extremely hacky and needs refactoring... But it works, I think.
* Implement text-align and <center>bptato2022-01-291-3/+30
|
* Implement line-height, vertical-alignbptato2022-01-281-9/+64
|
* Fix stylesheet containment bugbptato2022-01-251-32/+35
|
* Fix author style sheet assignmentbptato2022-01-241-2/+9
|
* Selector adjustmentsbptato2022-01-242-17/+21
|
* Remove some unused declarationsbptato2022-01-243-4/+0
|
* Optimize cascading algorithmbptato2022-01-244-149/+186
|
* Refactorbptato2022-01-245-38/+16
|
* Fix some block box bugsbptato2022-01-231-6/+5
|
* Use pixels as the base unit for the layoutbptato2022-01-231-0/+32
|
* Consider cell ratio when calculating lengthsbptato2022-01-231-8/+11
|
* Implement word-spacingbptato2022-01-231-7/+23
|
* Support pseudo elems as pseudo classesbptato2022-01-231-12/+15
|
* Fix ::before pseudo elem positioningbptato2022-01-231-4/+7
|
* Fix * selectorbptato2022-01-231-0/+2
|
* Support external stylesheetsbptato2022-01-232-2/+13
|
* Avoid unnecessary rendering on hover change etcbptato2022-01-222-18/+51
|
* Re-implement, height, fix pseudo on hoverbptato2022-01-221-0/+2
|
* Fix media query bug, do not refresh page without css change (wip)bptato2022-01-223-15/+23
|
* Re-implement marginsbptato2022-01-221-3/+3
|
* Make sure :root is always blockbptato2022-01-191-0/+13
|
* Re-implement inline blocksbptato2022-01-191-5/+1
|
* Fix crash on reshapebptato2022-01-191-2/+0
|
* Implement basics of new layout enginebptato2022-01-181-5/+19
|
* Small cascade optimizationsbptato2021-12-314-44/+76
|
* Refactorbptato2021-12-291-8/+8
|
* Cascade optimizations, start layout engine rewritebptato2021-12-293-64/+75
|
* Implement basic media query supportbptato2021-12-275-114/+482
|
* Basic content type implementationbptato2021-12-261-0/+1
|
* Refactor buffer rendering proceduresbptato2021-12-231-0/+3
|
* Preparation for at rules, small inline-block fixbptato2021-12-194-29/+67
|
lt'>
1ead3562 ^
b436291f ^





a0fc38c9 ^
691b529e ^
3bfd75fc ^



b436291f ^
016599f1 ^



4d238fd7 ^
dfdbcbab ^

4d238fd7 ^



dfdbcbab ^
4d238fd7 ^




016599f1 ^
4d238fd7 ^
7f193a0e ^

4d238fd7 ^




691b529e ^

c1123445 ^

3473c63a ^

4d238fd7 ^
7136ddd5 ^

4d238fd7 ^
dfdbcbab ^
4d238fd7 ^


c6034af3 ^



3473c63a ^
4d238fd7 ^

d785efe5 ^
4d238fd7 ^

a0fc38c9 ^

d785efe5 ^











7136ddd5 ^



3473c63a ^

c6034af3 ^
a0fc38c9 ^
795f5244 ^
a0fc38c9 ^

3473c63a ^

c6034af3 ^
a0fc38c9 ^
795f5244 ^
a0fc38c9 ^
a0d7a155 ^
3473c63a ^

3bfd75fc ^




3473c63a ^

c6034af3 ^
67f969b9 ^
c4e143d6 ^

65c905fe ^
67f969b9 ^
795f5244 ^

4e49b29e ^

db69ad7a ^






3473c63a ^
c6034af3 ^
4e49b29e ^
c4e143d6 ^
4e49b29e ^

a0d7a155 ^
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219