about summary refs log tree commit diff stats
path: root/test/layout/list-item-in-inline.html
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2025-01-25 19:52:18 +0100
committerbptato <nincsnevem662@gmail.com>2025-01-25 23:36:31 +0100
commit9f67b297d5436d3a1f597eb561c09d7db2d0a01a (patch)
tree64b07e5d9ff38b9a6bd6438156a7b0c20fe46c98 /test/layout/list-item-in-inline.html
parentf3157ce10a01e0bfa71803547b5dc8fe4d5425df (diff)
downloadchawan-9f67b297d5436d3a1f597eb561c09d7db2d0a01a.tar.gz
layout: do not generate anonymous inline boxes
Anonymous inline boxes were blocking progress on layout caching, so they
are now gone.  Instead, we handle them in layoutInline (which meanwhile
has spaghettified to beyond comprehension...  now it's a special case
of inner BlockBox (kind of?) - incredibly, it still passes tests :P)

This seems to match what major browsers do as well; some test cases were
updated to reflect the "improved" rendering this brings.

Next I'd like to remove anonymous table boxes by generating them in
cascade.  Then it should be straightforward enough to at least reuse
flow roots on relayout.

(And clean up flow layout...)
Diffstat (limited to 'test/layout/list-item-in-inline.html')
-rw-r--r--test/layout/list-item-in-inline.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/layout/list-item-in-inline.html b/test/layout/list-item-in-inline.html
new file mode 100644
index 00000000..456e9ec3
--- /dev/null
+++ b/test/layout/list-item-in-inline.html
@@ -0,0 +1,4 @@
+<!DOCTYPE html>
+<span>
+<li>
+test
t;rumpf_a@web.de> 2014-12-10 00:40:48 +0100 new website' href='/ahoang/Nim/commit/tools/website.tmpl?h=devel&id=74fdd5c2eaa5507b636c70db80df7f9c3f332d2b'>74fdd5c2e ^
2f9fd3277 ^




0b2a63b7b ^
74fdd5c2e ^
f081ac0e5 ^
0b2a63b7b ^
cc7236b2d ^
0b2a63b7b ^











f081ac0e5 ^
2f9fd3277 ^


f081ac0e5 ^
74fdd5c2e ^



2f9fd3277 ^

74fdd5c2e ^
f081ac0e5 ^
2f9fd3277 ^

74fdd5c2e ^
0b2a63b7b ^














2f9fd3277 ^
73fbcc1f6 ^
0b2a63b7b ^

2f9fd3277 ^












73fbcc1f6 ^
0b2a63b7b ^

5a9ba3469 ^
2f9fd3277 ^






73fbcc1f6 ^
2f9fd3277 ^


f45093893 ^
556f48808 ^

0b2a63b7b ^






556f48808 ^
0b2a63b7b ^
73fbcc1f6 ^
0b2a63b7b ^



556f48808 ^
0b2a63b7b ^
556f48808 ^
73fbcc1f6 ^


556f48808 ^
0b2a63b7b ^


556f48808 ^

0b2a63b7b ^

556f48808 ^

74fdd5c2e ^
2f9fd3277 ^
0b2a63b7b ^

2f9fd3277 ^



f081ac0e5 ^

74fdd5c2e ^

f081ac0e5 ^
74fdd5c2e ^
f081ac0e5 ^
74fdd5c2e ^
f081ac0e5 ^
73fbcc1f6 ^
2f9fd3277 ^
74fdd5c2e ^
74fdd5c2e ^
2f9fd3277 ^
e6dcceae6 ^
2f9fd3277 ^







74fdd5c2e ^
2f9fd3277 ^











73fbcc1f6 ^
2f9fd3277 ^





4080a9ca4 ^
2f9fd3277 ^





3119fe087 ^
2f9fd3277 ^


0b2a63b7b ^



f9c93d23b ^
0b2a63b7b ^
866205cba ^




f9c93d23b ^
866205cba ^
866205cba ^
0b2a63b7b ^
f081ac0e5 ^

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