aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout_2020/table/layout.rs
Commit message (Expand)AuthorAgeFilesLines
* Refactor computation of preferred aspect ratios (#34416)Oriol Brufau2024-11-291-4/+5
* Remove the containing_block parameter from TableLayout::layout_caption (#34297)Oriol Brufau2024-11-201-16/+5
* Set all tracing spans to trace level for now (#34256)Delan Azabani2024-11-191-2/+8
* Use a RwLock to cache inline_content_sizes() (#34232)Oriol Brufau2024-11-131-5/+5
* Fix inline content sizes of intrinsic element with indefinite block size (#34...Oriol Brufau2024-11-111-9/+11
* Replace ComputedValues with WritingMode on IndefiniteContainingBlock (#34090)Oriol Brufau2024-11-041-3/+7
* layout: Avoid layout sometimes when stretching (#33967)Martin Robinson2024-10-241-0/+7
* Minor cleanup for `Size` after #33844 (#33861)Oriol Brufau2024-10-161-1/+1
* Gate all use of `tracing` behind Cargo feature (#33845)Delan Azabani2024-10-161-6/+11
* Remove SizeKeyword, merge it into Size (#33844)Oriol Brufau2024-10-151-2/+2
* Avoid recomputing inline_content_sizes() when not needed (#33806)Oriol Brufau2024-10-141-7/+14
* Improve `Au(0)` constructions (#33709)birdbrained2024-10-101-5/+5
* layout: Avoid double negation in `CellLayout::is_empty_for_empty_cells()` (#3...Taym Haddadi2024-10-071-3/+2
* tools: Improve instrumentation and add it for some layout (#33647)Martin Robinson2024-10-051-0/+7
* clippy: Fix too_many_arguments warnings (#33648)tanishka2024-10-041-0/+1
* Refactor sizing logic for table measures (#33579)Oriol Brufau2024-10-011-31/+34
* Simplify the computation of CAPMIN (#33577)Oriol Brufau2024-09-281-40/+10
* Don't recompute percentage contribution for table row (#33575)Oriol Brufau2024-09-281-8/+1
* Make ComputedValuesExt expose keywords for the sizing properties (#33558)Oriol Brufau2024-09-271-24/+31
* Fix table track constrainedness (#33550)Oriol Brufau2024-09-261-16/+14
* Assert that we don't get malformed ContentSizes in tables (#33549)Oriol Brufau2024-09-261-5/+4
* Avoid unnecessary recomputation of `inline-size` being `auto` (#33548)Oriol Brufau2024-09-251-2/+1
* layout: Ensure that `<caption>`'s support `position: relative` (#33426)Martin Robinson2024-09-191-3/+13
* Replace .map_or(false with Option::is_some_and (#33468)Simon Wülker2024-09-161-2/+2
* Small improvements for table border collapse (#33452)Oriol Brufau2024-09-161-14/+107
* Do not remove extra columns at the end of the table (#33451)Oriol Brufau2024-09-161-2/+4
* Allow table-layout:fixed to shrink cells to less than the border+padding (#33...Oriol Brufau2024-09-131-6/+14
* uses app units in display_list (#33420)atbrakhi2024-09-131-2/+1
* Cleanup after #33396 (#33429)Oriol Brufau2024-09-121-4/+4
* Add support for `table-layout: fixed` (#33384)Oriol Brufau2024-09-121-35/+55
* Avoid crash with large table column widths (#33424)Oriol Brufau2024-09-121-12/+15
* layout: Right-to-left support for other layout modes (#33375)Martin Robinson2024-09-111-108/+195
* layout: Use `Au` in `ComputedValuesExt` (#33396)atbrakhi2024-09-101-32/+25
* layout: Implement proper absolute child position for flexbox (#33346)Martin Robinson2024-09-091-5/+4
* layout: Add an indefinite containing block for intrinsic sizing (#33204)Oriol Brufau2024-08-291-45/+36
* Allow creating a `ContentSizes` from `Au` (#33208)Oriol Brufau2024-08-271-13/+3
* Fix floating point errors in table layout (#33098)Simon Wülker2024-08-211-2/+30
* layout: Prepare for bidi by guarding all access to `writing-mode` (#33082)Martin Robinson2024-08-161-16/+23
* layout: Convert the FragmentTree to physical geometry (#33030)Martin Robinson2024-08-141-46/+87
* layout: Improve layout of table captions (#32695)Martin Robinson2024-07-081-84/+65
* clippy: Fix warnings in `shared` and `config`, `fonts`, `layout`, and `layout...Martin Robinson2024-07-041-4/+1
* layout: Add support for table captions (#32657)Martin Robinson2024-07-031-24/+330
* layout: Make `geom.rs` logical geoemetry types more ergonomic (#32633)Martin Robinson2024-06-281-16/+15
* layout: Enable parallel layout for tables (#32477)Martin Robinson2024-06-261-74/+87
* use app unit in box_fragement (#32349)atbrakhi2024-06-211-36/+28
* Fix table track offsets when there is `visibility: collapse` (#32469)Oriol Brufau2024-06-111-16/+20
* Don't shrink table columns when handling cells with greater spanning (#32458)Oriol Brufau2024-06-071-2/+2
* Implement 'visibility: collapse' on table parts (#32333)Oriol Brufau2024-05-211-19/+64
* Implement 'empty-cells' for layout 2020 (#32331)Oriol Brufau2024-05-211-1/+21
* tables: Add a naive implementation of `border-collapse` (#32309)Martin Robinson2024-05-181-11/+103