about summary refs log tree commit diff stats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* Re-implement, height, fix pseudo on hoverbptato2022-01-222-4/+16
* Fix word overflow bugbptato2022-01-221-1/+1
* Fix media query bug, do not refresh page without css change (wip)bptato2022-01-223-15/+23
* Fix page navigationbptato2022-01-229-73/+109
* Throw out old layout engine codebptato2022-01-221-477/+0
* Re-implement marginsbptato2022-01-225-45/+98
* Re-implement list itemsbptato2022-01-192-3/+19
* Make sure :root is always blockbptato2022-01-193-6/+24
* Fix whitespace issues after newlinebptato2022-01-191-11/+9
* Replace BoxType with CSSDisplaybptato2022-01-192-23/+18
* Fix percent encoding function and local percent encoded pathsbptato2022-01-193-6/+21
* Rewrite whitespace handlingbptato2022-01-193-121/+96
* Re-implement inline blocksbptato2022-01-194-34/+62
* Re-implement pseudo elementsbptato2022-01-192-12/+34
* Remove specified values for PSEUDO_NONEbptato2022-01-191-1/+1
* Fix crash on reshapebptato2022-01-193-22/+22
* Implement basics of new layout enginebptato2022-01-187-91/+288
* Small cascade optimizationsbptato2021-12-314-44/+76
* Refactorbptato2021-12-293-11/+11
* Merge branch 'layoutrewrite'bptato2021-12-297-567/+787
|\
| * Cascade optimizations, start layout engine rewritebptato2021-12-297-567/+787
* | Add punycode supportbptato2021-12-293-12/+330
|/
* Implement basic media query supportbptato2021-12-279-150/+529
* Basic content type implementationbptato2021-12-266-36/+99
* Proper URL handlingbptato2021-12-267-256/+960
* Refactor formatting, improve buffer cursor movementbptato2021-12-253-165/+98
* Fix pager bugsbptato2021-12-233-67/+99
* Refactor buffer rendering proceduresbptato2021-12-236-145/+151
* More efficient pipe outputbptato2021-12-211-3/+13
* Use a linked list for buffers, allow pipe as outputbptato2021-12-212-79/+77
* Prepare for layout engine rewritebptato2021-12-212-13/+46
* No anchor error messagebptato2021-12-212-6/+17
* Honestly I'm not sure what I added here...bptato2021-12-2110-184/+497
* Add client for buffer controlbptato2021-12-203-189/+221
* Implement gotoAnchorbptato2021-12-202-8/+21
* Fix and implement cursor movement commandsbptato2021-12-203-87/+167
* Fix cursorPrevWord, cursorNextWordbptato2021-12-192-66/+86
* Add commands for vertical navigation on displayed linebptato2021-12-192-1/+16
* Fix html parser bugsbptato2021-12-192-6/+10
* Fix pager mode formattingbptato2021-12-193-26/+27
* More configuration optionsbptato2021-12-194-67/+94
* Preparation for at rules, small inline-block fixbptato2021-12-198-36/+74
* Ugly hack to make inline blocks workbptato2021-12-182-65/+56
* Refactor selector code, optimize style tagsbptato2021-12-188-179/+207
* Rework cascading algorithmbptato2021-12-185-210/+166
* Macro for easier css value accessbptato2021-12-182-36/+32
* Move... thingsbptato2021-12-173-29/+34
* More code formatting consistencybptato2021-12-1711-22/+21
* More deduplicationbptato2021-12-172-36/+65
* Simplify layout engine codebptato2021-12-172-111/+92
8c69883738ff98a'>^
d1a1173d ^



d1a1173d ^























50369757 ^
f93725f5 ^

d1a1173d ^


















































20f386e5 ^

d1a1173d ^




da21d3d5 ^











2cd8bc77 ^

d0414ecd ^
2cd8bc77 ^




93a13f70 ^




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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421