You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Display::Contents variant to Display enum
Modify Taffy children iterator to recurse into Display::Contents nodes
Add `Display::Contents` support to the gentest script
Add basic tests for `Display::Contents`
Fix clippy lints and document TaffyChildIter next method
Fix Yoga benchmark helpers
smallvec WIP
Precompute display:contents vec
Remove smallvec + lazy display:contents iter implementation
Remove TaffySliceIter
Fix clippy lints
Use RefMut::map to simplify iterator
Reuse Vec in children iterator cache
Use a struct for the children cache
Change order of find_child_recursive parameters
Add Display::Contents to the release notes
Fix child and child_count methods to use resolved children
Copy file name to clipboardExpand all lines: RELEASES.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,7 @@ Example usage change:
87
87
### Added
88
88
89
89
- Support for [CSS Block layout](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flow_Layout/Block_and_Inline_Layout_in_Normal_Flow#elements_participating_in_a_block_formatting_context) has been added. This can be used via the new `Display::Block` variant of the `Display` enum. Note that inline, inline-block and float have *not* been implemented. The use case supported is block container nodes which contain block-level children.
90
+
- Support for [`Display::Contents`](https://css-tricks.com/get-ready-for-display-contents/)
90
91
- Support for running each layout algorithm individually on a single node via the following top-level functions:
0 commit comments