about summary refs log tree commit diff stats
path: root/src/layout/engine.nim
Commit message (Collapse)AuthorAgeFilesLines
...
* SpecifiedValue -> ComputedValuebptato2022-05-131-28/+28
| | | | Actually it's neither but ComputedValue is more accurate.
* Some refactoring for layout engine rewritebptato2022-05-101-270/+249
|
* Background color improvementsbptato2022-02-151-12/+17
|
* Fix list item marker hackbptato2022-02-121-4/+8
|
* Implement list-style-positionbptato2022-01-301-3/+49
|
* Implement formsbptato2022-01-291-33/+52
| | | | | | 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-47/+116
|
* Implement line-height, vertical-alignbptato2022-01-281-49/+114
|
* Implement paddingbptato2022-01-261-22/+80
|
* Fix whitespace stylingbptato2022-01-261-2/+6
|
* Remove some unused declarationsbptato2022-01-241-2/+0
|
* Fix node to cell mapping part 2bptato2022-01-241-3/+0
|
* Fix node to cell mappingbptato2022-01-241-18/+6
|
* Fix some block box bugsbptato2022-01-231-30/+42
|
* Fix incorrect canvas width and whitespace bugsbptato2022-01-231-2/+5
|
* Use pixels as the base unit for the layoutbptato2022-01-231-29/+49
|
* Consider cell ratio when calculating lengthsbptato2022-01-231-1/+1
|
* Implement word-spacingbptato2022-01-231-21/+33
|
* Fix ::before pseudo elem positioningbptato2022-01-231-14/+19
|
* Avoid unnecessary rendering on hover change etcbptato2022-01-221-14/+42
|
* Re-implement, height, fix pseudo on hoverbptato2022-01-221-4/+14
|
* Fix word overflow bugbptato2022-01-221-1/+1
|
* Fix page navigationbptato2022-01-221-18/+39
|
* Throw out old layout engine codebptato2022-01-221-477/+0
|
* Re-implement marginsbptato2022-01-221-35/+85
|
* Re-implement list itemsbptato2022-01-191-2/+18
|
* Make sure :root is always blockbptato2022-01-191-5/+11
|
* Fix whitespace issues after newlinebptato2022-01-191-11/+9
|
* Replace BoxType with CSSDisplaybptato2022-01-191-19/+17
| | | | They're the same thing.
* Rewrite whitespace handlingbptato2022-01-191-116/+94
|
* Re-implement inline blocksbptato2022-01-191-26/+54
|
* Re-implement pseudo elementsbptato2022-01-191-11/+33
|
* Fix crash on reshapebptato2022-01-191-15/+16
|
* Implement basics of new layout enginebptato2022-01-181-61/+238
|
* Cascade optimizations, start layout engine rewritebptato2021-12-291-439/+578
|
* Implement basic media query supportbptato2021-12-271-4/+4
|
* Refactor buffer rendering proceduresbptato2021-12-231-0/+5
|
* Prepare for layout engine rewritebptato2021-12-211-9/+9
|
* Honestly I'm not sure what I added here...bptato2021-12-211-16/+22
|
* Preparation for at rules, small inline-block fixbptato2021-12-191-1/+1
|
* Ugly hack to make inline blocks workbptato2021-12-181-59/+54
|
* Rework cascading algorithmbptato2021-12-181-18/+18
|
* Macro for easier css value accessbptato2021-12-181-22/+22
|
* Move... thingsbptato2021-12-171-19/+26
|
* More code formatting consistencybptato2021-12-171-3/+3
|
* More deduplicationbptato2021-12-171-36/+59
|
* Simplify layout engine codebptato2021-12-171-108/+92
|
* Length unit fixesbptato2021-12-151-1/+1
|
* Better inline block supportbptato2021-12-151-36/+49
| | | | | | Still needs a refactoring of at least the inline processing algorithm to work somewhat correctly. (how that should be done is another question...)
* Initial (and defective) inline-block implementationbptato2021-12-151-31/+72
|
previous revision' href='/akkartik/mu/blame/sandbox/009-sandbox-trace.mu?h=main&id=991d76f32817f5515fb8db25a7d5ca2912cfe4ac'>^
fa94f4d9 ^


b0bf5321 ^
fa94f4d9 ^

d31037ff ^


fa94f4d9 ^
29cc15d6 ^
aaf61a53 ^
fa94f4d9 ^





b0bf5321 ^
fa94f4d9 ^
be422222 ^
fa94f4d9 ^
be422222 ^
fa94f4d9 ^




b0bf5321 ^
fa94f4d9 ^














1ead3562 ^
fa94f4d9 ^
1ead3562 ^
fa94f4d9 ^






b0bf5321 ^
fa94f4d9 ^
afdda1ea ^
fa94f4d9 ^


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