about summary refs log tree commit diff stats
path: root/src/layout
Commit message (Expand)AuthorAgeFilesLines
...
* Fix node to cell mapping part 2bptato2022-01-242-4/+0
* Fix node to cell mappingbptato2022-01-242-22/+9
* Fix some block box bugsbptato2022-01-232-30/+44
* Fix incorrect canvas width and whitespace bugsbptato2022-01-231-2/+5
* Use pixels as the base unit for the layoutbptato2022-01-232-42/+49
* Consider cell ratio when calculating lengthsbptato2022-01-231-1/+1
* Implement word-spacingbptato2022-01-232-21/+34
* Fix ::before pseudo elem positioningbptato2022-01-231-14/+19
* Avoid unnecessary rendering on hover change etcbptato2022-01-222-14/+44
* Re-implement, height, fix pseudo on hoverbptato2022-01-221-4/+14
* Fix word overflow bugbptato2022-01-221-1/+1
* Fix page navigationbptato2022-01-222-22/+48
* Throw out old layout engine codebptato2022-01-221-477/+0
* Re-implement marginsbptato2022-01-222-40/+87
* Re-implement list itemsbptato2022-01-192-3/+19
* Make sure :root is always blockbptato2022-01-192-6/+11
* Fix whitespace issues after newlinebptato2022-01-191-11/+9
* Replace BoxType with CSSDisplaybptato2022-01-192-23/+18
* Rewrite whitespace handlingbptato2022-01-192-117/+94
* Re-implement inline blocksbptato2022-01-192-28/+57
* Re-implement pseudo elementsbptato2022-01-192-12/+34
* Fix crash on reshapebptato2022-01-192-20/+22
* Implement basics of new layout enginebptato2022-01-182-67/+248
* Cascade optimizations, start layout engine rewritebptato2021-12-292-489/+616
* Implement basic media query supportbptato2021-12-272-14/+14
* Refactor buffer rendering proceduresbptato2021-12-231-0/+5
* Prepare for layout engine rewritebptato2021-12-212-13/+46
* Honestly I'm not sure what I added here...bptato2021-12-212-17/+24
* Preparation for at rules, small inline-block fixbptato2021-12-191-1/+1
* Ugly hack to make inline blocks workbptato2021-12-182-65/+56
* Rework cascading algorithmbptato2021-12-182-19/+19
* Macro for easier css value accessbptato2021-12-181-22/+22
* Move... thingsbptato2021-12-172-24/+32
* More code formatting consistencybptato2021-12-171-3/+3
* More deduplicationbptato2021-12-172-36/+65
* Simplify layout engine codebptato2021-12-172-111/+92
* Length unit fixesbptato2021-12-151-1/+1
* Better inline block supportbptato2021-12-151-36/+49
* Initial (and defective) inline-block implementationbptato2021-12-152-36/+76
* Some parser fixesbptato2021-12-151-73/+57
* Refactor enumsbptato2021-12-152-2/+1
* DL support and BR fixesbptato2021-12-141-12/+9
* Support all css length unitsbptato2021-12-142-41/+59
* Remove anonymous block box generationbptato2021-12-141-74/+9
* Add lists, function selector fixesbptato2021-12-141-5/+27
* Support height, fix marginbptato2021-12-131-2/+20
* Support width propertybptato2021-12-131-2/+7
* Support ::before, ::after pseudo elementsbptato2021-12-132-19/+119
* Implement anonymous block boxesbptato2021-11-262-3/+44
* Refactor some parts of the layout enginebptato2021-11-252-126/+129
erspace.de> 2015-09-22 18:41:24 +0200 fix progress bar regression' href='/akspecs/ranger/commit/ranger/ext/shutil_generatorized.py?h=v1.9.0b1&id=df64986fea91c9103baa1a07c5021cc0b4bb7a6f'>df64986f ^
19995fd1 ^
df64986f ^

19995fd1 ^
































































































a258b5c1 ^

19995fd1 ^

a258b5c1 ^

19995fd1 ^











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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310