summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb
AgeCommit message (Expand)Author
2020-06-26LibWeb: Add CanvasRenderingContext2D.rotate()Andreas Kling
2020-06-26LibWeb: Skip over floating elements when collapsing marginsAndreas Kling
2020-06-26LibWeb: Add the 'float' CSS property to LayoutStyleAndreas Kling
2020-06-26LibWeb: Remove duplicate if branch in fragment parsing.theazgra
2020-06-26LibWeb+Browser: Remove old HTML parser :^)Andreas Kling
2020-06-26LibWeb: Implement fragment parsing and use it for Element.innerHTMLAndreas Kling
2020-06-26LibWeb: Tolerate quoted HTTP Content-Type encodingsAndreas Kling
2020-06-26LibWeb: Add Document.getElementsByTagName()Andreas Kling
2020-06-26LibWeb: Let's not pass "%u" to String() and expect something to happenAndreas Kling
2020-06-25LibWeb: Fix build after Specificity.h removalAndreas Kling
2020-06-25LibWeb: Treat all HTTP 4xx codes as errorsAndreas Kling
2020-06-25LibWeb: Don't allow more than one color sub-value in CSS 'background'Andreas Kling
2020-06-25LibWeb: Tweak CSS parser to swallow backslash-escaped charactersAndreas Kling
2020-06-25LibWeb: Compress specificity into a 32-bit unsigned intAndreas Kling
2020-06-25LibWeb: Percentage 'height' should sometimes behave as 'auto'Andreas Kling
2020-06-25LibWeb: Serialize Length::Type::Percentage with a "%" suffixAndreas Kling
2020-06-25LibWeb: Make scroll-to-anchor zone in on the element's padding boxAndreas Kling
2020-06-25LibWeb: Place normal-flow blocks relative to non-absolute siblingsAndreas Kling
2020-06-25LibWeb: Draw the margin and padding boxes around the inspected nodeAndreas Kling
2020-06-25LibWeb: Iterating more on placement of absolutely positioned elementsAndreas Kling
2020-06-25LibWeb: Update the border metrics of absolutely positioned boxesAndreas Kling
2020-06-25LibWeb: Remove empty trailing line boxesAndreas Kling
2020-06-25LibWeb: Avoid some redundant resolution of padding values during layoutAndreas Kling
2020-06-24LibWeb: Use the cached white-space from LayoutStyle in text_for_style()Andreas Kling
2020-06-24LibWeb: Move border width and color into LayoutStyleAndreas Kling
2020-06-24LibWeb: Move the offset, margin and padding boxes into LayoutStyleAndreas Kling
2020-06-24LibWeb: Move white-space into LayoutStyleAndreas Kling
2020-06-24LibWeb: Add CSS::Display enum and StyleProperties::display()Andreas Kling
2020-06-24LibWeb: Move height, min-height and max-height into LayoutStyleAndreas Kling
2020-06-24LibWeb: Move min-width and max-width into LayoutStyleAndreas Kling
2020-06-24LibWeb: Move width into LayoutStyleAndreas Kling
2020-06-24LibWeb: Move position and text-align to LayoutStyleAndreas Kling
2020-06-24LibWeb: Add LayoutStyle, a place to store style info for layout & paintAndreas Kling
2020-06-24LibWeb: Rename LayoutNode::style() => specified_style()Andreas Kling
2020-06-24LibWeb: Add an "undefined" state to LengthAndreas Kling
2020-06-24LibWeb: Turn BoxModelMetrics into a simple structAndreas Kling
2020-06-24LibWeb: Remove default Length constructor and add make_auto()/make_px()Andreas Kling
2020-06-24LibWeb: Use the cached text-align value in LineBox::add_fragment()Andreas Kling
2020-06-23LibWeb: Cache the used CSS text-align property on LayoutNodeWithStyleAndreas Kling
2020-06-23LibWeb: Always inline absolute Length to_px() conversionAndreas Kling
2020-06-23LibWeb: Always inline is<LayoutBox>() and is<LayoutBlock>()Andreas Kling
2020-06-23LibWeb: Cache the used CSS 'position' value on LayoutNodeWithStyleAndreas Kling
2020-06-23LibWeb: Handle empty inputs to the CSS parserAndreas Kling
2020-06-23LibWeb: Handle position:absolute with both left and right specifiedAndreas Kling
2020-06-23LibWeb: Make sure BoxModelMetrics are set for position:absolute boxesAndreas Kling
2020-06-23LibWeb: Take margin into account when positioning absolute descendantsAndreas Kling
2020-06-23LibWeb: Respect specified width when computing shrink-to-fit candidatesAndreas Kling
2020-06-23LibWeb: Update PageView content size on page relayoutAndreas Kling
2020-06-23LibJS: Clarify Object (base class) construction somewhatAndreas Kling
2020-06-23LibWeb: Make wrapper factory functions take JS::GlobalObject&Andreas Kling