summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb
AgeCommit message (Expand)Author
2020-06-13LibWeb: Add "colspan" to HTML::AttributeNamesAndreas Kling
2020-06-13LibWeb: Add LayoutTableCell::colspan()Andreas Kling
2020-06-12LibWeb: First cut of extremely naive table row layoutAndreas Kling
2020-06-12LibWeb: Turn <table width> into the CSS width propertyAndreas Kling
2020-06-12LibWeb: Turn <td bgcolor> into background-colorAndreas Kling
2020-06-12LibWeb: Add "bgcolor" to HTML::AttributeNamesAndreas Kling
2020-06-12LibWeb+Browser: Add a barebones LayoutTreeModel to the inspector windowAndreas 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: Whine about unrecognized CSS properties in debug logAndreas Kling
2020-06-12LibWeb: Rename BoxModelMetrics::full_margin() => margin_box()Andreas Kling
2020-06-12LibWeb: Some improvements to absolute positioningAndreas Kling
2020-06-12LibWeb: Include class names in layout tree dumpsAndreas Kling
2020-06-11LibJS: Consolidate error messages into ErrorTypes.hMatthew Olsson
2020-06-10LibWeb: Don't try to expand shorthands from non-string CSS valuesAndreas Kling
2020-06-10LibWeb: Expand "background: url()" into "background-image: url()"Andreas Kling
2020-06-10LibWeb: Expand 2-part border-width shorthand CSS propertiesAndreas Kling
2020-06-10LibWeb: Apply style rules in order of specificity (kinda)Andreas Kling
2020-06-10LibWeb: Expand border-{top,right,bottom-left} CSS shorthand propertiesAndreas Kling
2020-06-10LibWeb: Ignore backslashes (\) in attribute selectorsAndreas Kling
2020-06-10LibWeb: Parse and match basic "contains" attribute selectors (~=)Andreas 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-10LibWeb: Fix parser interpreting "&quot;" as "&quot"Andreas 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: Unbreak favicon notifications after Page refactoringAndreas Kling
2020-06-08LibWeb: Remove unnecessary on_foo hooks from FrameAndreas Kling
2020-06-08LibJS: Make more Interpreter functions take a GlobalObject&Andreas Kling
2020-06-08LibJS: Interpreter::this_value() => this_value(GlobalObject&)Andreas Kling
2020-06-08LibWeb: Add Page abstraction between PageView and main FrameAndreas Kling
2020-06-08LibJS+LibWeb: Remove a bunch of calls to Interpreter::global_object()Andreas Kling
2020-06-07LibWeb: Use HTML::TagNames globals in the new HTML parserAndreas Kling
2020-06-07LibWeb: Add HTML::TagNames namespace for global tag name FlyStringsAndreas Kling
2020-06-07LibWeb: Add (stub) HTMLTable{,Cell,Row}Element C++ classesAndreas Kling
2020-06-07LibWeb: Fix codepoint_from_entity() never returning an errorAndreas Kling
2020-06-07LibWeb: Fix tokenizer swallowing an extra token after a named entityAndreas Kling
2020-06-07LibWeb: Unbreak <a title> tooltips in the main frameAndreas Kling
2020-06-07LibWeb: Start fleshing out support for relative CSS unitsAndreas Kling
2020-06-07LibWeb: Fix broken paint invalidation after subframe changesAndreas Kling
2020-06-07LibWeb: Let subframes propagate paint invalidations via host elementAndreas Kling
2020-06-07LibWeb: Remove unused Document::on_layout_updated hookAndreas Kling
2020-06-07LibWeb: Open subframe links inside the subframe itselfAndreas Kling
2020-06-07LibWeb: Add per-Frame EventHandler, handle mouse events recursivelyAndreas Kling
2020-06-07LibWeb: Move Frame.{cpp,h} into a new Frame/ directoryAndreas Kling