summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/TableFormattingContext.cpp
AgeCommit message (Expand)Author
2023-01-24LibWeb: Improve column width distributionAliaksandr Kalenik
2023-01-24LibWeb: Avoid division by zero in `distribute_width_to_columns`Aliaksandr Kalenik
2023-01-24LibWeb: Use table wrapper box width to resolve cells widthAliaksandr Kalenik
2023-01-24LibWeb: Use percentage column widths in `compute_table_measures`Aliaksandr Kalenik
2023-01-20LibWeb: Improve auto height calculation for tablesAliaksandr Kalenik
2023-01-20LibWeb: Include table intrinsic offsets in child boxes positionAliaksandr Kalenik
2023-01-14LibWeb: Stop using percentage column widths in `compute_table_measures`Aliaksandr Kalenik
2023-01-14LibWeb: Propagate layout mode of table formatting context to table cellsAliaksandr Kalenik
2023-01-14LibWeb: Table box width should be relative to wrapper containing blockAliaksandr Kalenik
2023-01-09LibWeb: Use `table_box()` to get root box in TFCAliaksandr Kalenik
2023-01-09LibWeb: Rename used_width to used_height in TFC row structAliaksandr Kalenik
2023-01-09LibWeb: Move cells positioning in separate function in TFCAliaksandr Kalenik
2023-01-09LibWeb: Move rows positioning in separate function in TFCAliaksandr Kalenik
2023-01-09LibWeb: Move rows heights calculation in separate function in TFCAliaksandr Kalenik
2023-01-09LibWeb: Remove inheritance of `TableBox` from `BlockContainer`Aliaksandr Kalenik
2023-01-09LibWeb: Remove inheritance of `TableRowGroupBox` from `BlockContainer`Aliaksandr Kalenik
2023-01-07LibWeb: Consider span in table column width calculationAliaksandr Kalenik
2023-01-06LibWeb: Consider percent and fixed widths in table column distributionAliaksandr Kalenik
2023-01-06LibWeb: Use available space to resolve table cells widthAliaksandr Kalenik
2023-01-05LibWeb: Resolve Lengths to CSSPixelsSam Atkins
2023-01-05LibWeb: Convert LayoutState to new pixel unitsSam Atkins
2023-01-05LibWeb: Convert TableFormattingContext to new pixel unitsSam Atkins
2023-01-05LibWeb: Convert FormattingContext to new pixel unitsSam Atkins
2023-01-03LibWeb: Conditionally draw borders for table elementsmartinfalisse
2023-01-03LibWeb: Prevent column sizing errors for html tablemartinfalisse
2022-12-31LibWeb: Fix table-row y-positionTom
2022-12-09LibWeb: Consider specified cell widths in a tableAliaksandr Kalenik
2022-12-09LibWeb: Layout table rows that do not belong to table row groupAliaksandr Kalenik
2022-12-05LibWeb: Inherit TableFormattingContext from FC instead of BFCAliaksandr Kalenik
2022-12-05LibWeb: Add vertical-align support for table cellsAliaksandr Kalenik
2022-12-05LibWeb: Implement intrinsic width calculation for TFCAliaksandr Kalenik
2022-12-05LibWeb: Take rowspan into account while table formattingAliaksandr Kalenik
2022-12-05LibWeb: Start implementation of CSS Table 3 specAliaksandr Kalenik
2022-10-02LibWeb: Reorganize layout algorithms around available spaceAndreas Kling
2022-09-29LibWeb: Make FormattingContext::run() take available space as inputAndreas Kling
2022-09-24LibWeb: Add FormattingContext::automatic_content_height()Andreas Kling
2022-07-19LibWeb: Add accessors for UsedValues::computed_{width,height}Andreas Kling
2022-07-17LibWeb: Rename FormattingState to LayoutStateAndreas Kling
2022-07-11LibWeb: Express intrinsic size layout via size constraintsAndreas Kling
2022-07-11LibWeb: Make separate functions for calculating min/max content sizesAndreas Kling
2022-07-09LibWeb: Make sure CSS::ComputedValues has initial size valuesAndreas Kling
2022-04-03LibWeb: Include all row-groups in column width calculationsSimon Wanner
2022-03-29LibWeb: Size table cells using a combination of min- and max-widthsSimon Wanner
2022-03-29LibWeb: Only size `width: auto` table-cells by min-contentSimon Wanner
2022-03-28LibWeb: Set a cell's content width based on the column(s) it's inSimon Wanner
2022-03-28LibWeb: Calculate a cell's width using min-contentSimon Wanner
2022-03-28LibWeb: Distribute the width of a table cell spanning multiple columnsSimon Wanner
2022-03-28LibWeb: Expand the last cell in a row to the right edgeSimon Wanner
2022-03-28LibWeb: Apply a table row's height to all cellsSimon Wanner
2022-03-21LibWeb: Translate table cells by their top left borderKarol Kosek