about summary refs log tree commit diff stats
path: root/src/layout/engine.nim
Commit message (Expand)AuthorAgeFilesLines
* layout: track overflow sizebptato2024-06-041-41/+112
* layout: misc refactoringsbptato2024-06-021-209/+180
* layout: clean up inline tree constructionbptato2024-06-011-280/+289
* layout: dimSum -> sumbptato2024-06-011-22/+21
* layout: refactor resolveSizesbptato2024-06-011-140/+126
* layout: line box sizing fixesbptato2024-05-311-15/+11
* layout: fix a width sizing bugbptato2024-05-301-4/+1
* layout: fix regressionbptato2024-05-301-0/+3
* layout: simplify percHeight handling, misc refactoringsbptato2024-05-301-67/+30
* layout: fix caption margin calculationbptato2024-05-301-19/+17
* layout: improve baseline calculationbptato2024-05-301-56/+56
* layout: fix clear on blocks establishing new BFCsbptato2024-05-301-1/+4
* layout: misc refactoringsbptato2024-05-291-183/+182
* layout: get rid of InlineBoxBuilderbptato2024-05-281-91/+89
* layout: fix crash on inline tablesbptato2024-05-281-1/+1
* stylednode: remove `text' fieldbptato2024-05-281-5/+7
* layout: remove BlockBoxBuidlerbptato2024-05-271-675/+574
* layout: list item improvements, fix inner markersbptato2024-05-251-36/+41
* layout: add wrapper box for table caption + misc stuffbptato2024-05-241-106/+141
* layout, layoutunit: remove some automatic convertersbptato2024-05-221-4/+5
* layout: simplifybptato2024-05-211-102/+76
* layout: fix inline tab expansionbptato2024-05-191-0/+1
* layout: fix BFC positioning in presence of floatsbptato2024-05-191-14/+56
* css: stub overflowbptato2024-05-181-2/+3
* layout: fix maxFloatHeight checkbptato2024-05-181-5/+5
* layout: reuse box.positioned in positionAbsolutebptato2024-05-181-4/+4
* layout: relative positioning fixesbptato2024-05-181-75/+63
* layout: slightly refactor table layoutbptato2024-05-181-27/+26
* css/values -> css/cssvaluesbptato2024-05-161-1/+1
* luwrap: replace Nim unicode maps with libunicodebptato2024-05-091-3/+3
* layout: unify some code pathsbptato2024-05-091-222/+182
* layout: another table colwidth fixbptato2024-05-081-2/+8
* layout: small cleanupbptato2024-05-081-39/+34
* layout: resize over-constrained table columnsbptato2024-05-081-12/+24
* layout: table cell resizing fixesbptato2024-05-051-24/+29
* layout: fix float size in table cells; remove redundant positioningbptato2024-04-271-7/+14
* layout: fix image baselinebptato2024-04-261-2/+3
* Initial image supportbptato2024-04-251-6/+20
* layout: do not use parent computed values in root fragmentbptato2024-04-211-19/+11
* layout: slightly refactor layoutInlinebptato2024-04-211-40/+42
* layout: flex item margin fixesbptato2024-04-201-25/+34
* layout: fix double padding in flexbptato2024-04-201-2/+4
* layout: fix a list style positioning bugbptato2024-04-201-2/+2
* layout: float sizing fixesbptato2024-04-191-8/+21
* layout: accept inline-flex in iflushbptato2024-04-171-1/+1
* Update code stylebptato2024-04-171-278/+300
* layout: fix list-item positioningbptato2024-04-161-3/+5
* layout: remove ListItemBox, handle inline-flex correctlybptato2024-04-151-78/+65
* layout: height fixesbptato2024-04-121-41/+22
* layout: slightly hacky flex-basis implementationbptato2024-04-091-2/+21
1ae525ff4bed44e3ca2030fa655ad7c5bc7d'>^
ab1d1ae5 ^

2b52e9e6 ^








d326f24d ^
2b52e9e6 ^
ab1d1ae5 ^

2b52e9e6 ^








d326f24d ^
2b52e9e6 ^
ab1d1ae5 ^

2b52e9e6 ^








d326f24d ^
2b52e9e6 ^
ab1d1ae5 ^

2b52e9e6 ^



1fc1d8af ^


2b52e9e6 ^





d326f24d ^
2b52e9e6 ^
ab1d1ae5 ^

2b52e9e6 ^
327b7c16 ^
2b52e9e6 ^






d326f24d ^
2b52e9e6 ^
ab1d1ae5 ^

2b52e9e6 ^
f7c3c4ca ^
1fc1d8af ^



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