File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,8 @@ interface ExtentConstraint {
140
140
};
141
141
```
142
142
143
- Actually this doesn't really work? As you can have an inlineSize, which also can overflow.
143
+ | Actually this doesn't really work? As you can have an inlineSize, which also can overflow. |
144
+ | --- |
144
145
145
146
Exclusions can be added to the constraint space which children should avoid. E.g.
146
147
@@ -178,8 +179,9 @@ exclusions.
178
179
The layoutOpportunities generator will return a series of max-rects for a given constraint space.
179
180
These are ordered by ` inlineStart ` , ` inlineSize ` then ` blockStart ` .
180
181
181
- How do we represent non-rect exclusions? Initial thought is to always jump by ` 1em ` of author
182
- specified amount.
182
+ | How do we represent non-rect exclusions? Initial thought is to always jump by ` 1em ` of author
183
+ specified amount. |
184
+ | --- |
183
185
184
186
### Performing Layout
185
187
@@ -252,6 +254,10 @@ function performLayout(constraintSpace, box) {
252
254
} else {
253
255
fragmentRequest .push (fragmentRequestObject .value );
254
256
}
257
+
258
+ for (let i = 0 ; i < fragmentRequest .length ; i++ ) {
259
+ fragmentResult .push (performLayout (fragmentRequest[i]));
260
+ }
255
261
256
262
// Request the next fragment.
257
263
fragmentRequestObj = layoutGenerator .next (
You can’t perform that action at this time.
0 commit comments