summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Layout
AgeCommit message (Expand)Author
2020-06-18LibWeb: Move StackingContext from Layout/ to Painting/Andreas Kling
2020-06-18LibWeb: Rename LayoutNode::render() to paint()Andreas Kling
2020-06-18LibWeb: Respect min-width and max-width on position:absolute elementsAndreas Kling
2020-06-18LibWeb: More work on width of position:absolute elementsAndreas Kling
2020-06-18LibWeb: Separate layout tree rendering into phasesAndreas Kling
2020-06-18LibWeb: Better width computation for position:absolute blocksAndreas Kling
2020-06-16LibWeb: Make Element::tag_name() return a const FlyString&Andreas Kling
2020-06-15LibWeb: Allow block children of inlinesAndreas Kling
2020-06-15LibWeb: Respect CSS z-index property while paintingAndreas Kling
2020-06-15LibWeb: Layout nodes without own style can't be absolutely positionedAndreas Kling
2020-06-14LibWeb: Don't assert when containing block doesn't know how to placeAndreas Kling
2020-06-14LibWeb: Move "visible in viewport" state tracking to ImageLoaderAndreas Kling
2020-06-14LibWeb: Remove some unused functions from LayoutTableAndreas Kling
2020-06-14LibWeb: Reorganize layout algorithmAndreas Kling
2020-06-14LibWeb: Simplify LayoutBlock::layout_block_children() a little bitAndreas Kling
2020-06-14LibWeb: Add LayoutNode::frame() reference getterAndreas Kling
2020-06-14LibWeb: Don't choke when trying to render a document-less <iframe>Andreas Kling
2020-06-13LibWeb: Split out image loading logic from HTMLImageElementAndreas Kling
2020-06-13LibWeb: Fix LayoutImage stupidly painting backgrounds over itselfAndreas Kling
2020-06-13LibWeb: Don't try to be clever about -libweb-center relative positionAndreas Kling
2020-06-13LibWeb: Remove some unused functions in LayoutTableRowAndreas Kling
2020-06-13LibWeb: Teach line layout to collapse whitespace across fragmentsAndreas Kling
2020-06-13LibWeb: Implement <center> as -libweb-centerAndreas Kling
2020-06-13LibWeb: More work on table layoutAndreas Kling
2020-06-13LibWeb: Add LayoutTableCell::colspan()Andreas Kling
2020-06-12LibWeb: First cut of extremely naive table row layoutAndreas Kling
2020-06-12AK: Make string-to-number conversion helpers return OptionalAndreas Kling
2020-06-12LibWeb: Handle negative values when collapsing vertical marginsAndreas Kling
2020-06-12LibWeb: Implement very basic margin collapsingAndreas Kling
2020-06-12LibWeb: Remove absolutely positioned elements from the normal flowAndreas Kling
2020-06-12LibWeb: Remove absolute positioning logic from LayoutReplacedAndreas Kling
2020-06-12LibWeb: Add basic support for position:fixedAndreas Kling
2020-06-12LibWeb: Rename BoxModelMetrics::full_margin() => margin_box()Andreas Kling
2020-06-12LibWeb: Some improvements to absolute positioningAndreas Kling
2020-06-10LibWeb: Constrain block height by the max-height if specifiedAndreas Kling
2020-06-10LibGfx: Rename Rect,Point,Size => IntRect,IntPoint,IntSizeAndreas Kling
2020-06-10LibWeb: Rework the layout engine to use relative offsetsAndreas Kling
2020-06-09LibWeb: Add LayoutTableRowGroup to implement display: table-row-groupAndreas Kling
2020-06-09LibWeb: Add some iteration helpers to LayoutNodeAndreas Kling
2020-06-08LibWeb: Add Page abstraction between PageView and main FrameAndreas Kling
2020-06-07LibWeb: Start fleshing out support for relative CSS unitsAndreas Kling
2020-06-07LibWeb: Move Frame.{cpp,h} into a new Frame/ directoryAndreas Kling
2020-06-06LibWeb: Whine in debug log instead of asserting on partial layout FIXMEAndreas Kling
2020-06-06LibWeb: Use FrameLoader to load iframes :^)Andreas Kling
2020-06-05LibWeb: Start adding support for the <iframe> element! :^)Andreas Kling
2020-06-05LibWeb: Simplify LayoutWidget layoutAndreas Kling
2020-06-05LibWeb: Make <canvas> use the generic replaced layout algorithmAndreas Kling
2020-06-05LibWeb: Start implementing proper layout of replaced elementsAndreas Kling
2020-06-05LibWeb: Improve computation of a layout node's containing blockAndreas Kling
2020-06-02LibWeb: Share decoded images at the Resource level :^)Andreas Kling