Age | Commit message (Expand) | Author |
2020-06-13 | LibWeb: Add "colspan" to HTML::AttributeNames | Andreas Kling |
2020-06-13 | LibWeb: Add LayoutTableCell::colspan() | Andreas Kling |
2020-06-12 | LibWeb: First cut of extremely naive table row layout | Andreas Kling |
2020-06-12 | LibWeb: Turn <table width> into the CSS width property | Andreas Kling |
2020-06-12 | LibWeb: Turn <td bgcolor> into background-color | Andreas Kling |
2020-06-12 | LibWeb: Add "bgcolor" to HTML::AttributeNames | Andreas Kling |
2020-06-12 | LibWeb+Browser: Add a barebones LayoutTreeModel to the inspector window | Andreas Kling |
2020-06-12 | AK: Make string-to-number conversion helpers return Optional | Andreas Kling |
2020-06-12 | LibWeb: Handle negative values when collapsing vertical margins | Andreas Kling |
2020-06-12 | LibWeb: Implement very basic margin collapsing | Andreas Kling |
2020-06-12 | LibWeb: Remove absolutely positioned elements from the normal flow | Andreas Kling |
2020-06-12 | LibWeb: Remove absolute positioning logic from LayoutReplaced | Andreas Kling |
2020-06-12 | LibWeb: Add basic support for position:fixed | Andreas Kling |
2020-06-12 | LibWeb: Whine about unrecognized CSS properties in debug log | Andreas Kling |
2020-06-12 | LibWeb: Rename BoxModelMetrics::full_margin() => margin_box() | Andreas Kling |
2020-06-12 | LibWeb: Some improvements to absolute positioning | Andreas Kling |
2020-06-12 | LibWeb: Include class names in layout tree dumps | Andreas Kling |
2020-06-11 | LibJS: Consolidate error messages into ErrorTypes.h | Matthew Olsson |
2020-06-10 | LibWeb: Don't try to expand shorthands from non-string CSS values | Andreas Kling |
2020-06-10 | LibWeb: Expand "background: url()" into "background-image: url()" | Andreas Kling |
2020-06-10 | LibWeb: Expand 2-part border-width shorthand CSS properties | Andreas Kling |
2020-06-10 | LibWeb: Apply style rules in order of specificity (kinda) | Andreas Kling |
2020-06-10 | LibWeb: Expand border-{top,right,bottom-left} CSS shorthand properties | Andreas Kling |
2020-06-10 | LibWeb: Ignore backslashes (\) in attribute selectors | Andreas Kling |
2020-06-10 | LibWeb: Parse and match basic "contains" attribute selectors (~=) | Andreas Kling |
2020-06-10 | LibWeb: Constrain block height by the max-height if specified | Andreas Kling |
2020-06-10 | LibGfx: Rename Rect,Point,Size => IntRect,IntPoint,IntSize | Andreas Kling |
2020-06-10 | LibWeb: Rework the layout engine to use relative offsets | Andreas Kling |
2020-06-10 | LibWeb: Fix parser interpreting """ as """ | Andreas Kling |
2020-06-09 | LibWeb: Add LayoutTableRowGroup to implement display: table-row-group | Andreas Kling |
2020-06-09 | LibWeb: Add some iteration helpers to LayoutNode | Andreas Kling |
2020-06-08 | LibWeb: Unbreak favicon notifications after Page refactoring | Andreas Kling |
2020-06-08 | LibWeb: Remove unnecessary on_foo hooks from Frame | Andreas Kling |
2020-06-08 | LibJS: Make more Interpreter functions take a GlobalObject& | Andreas Kling |
2020-06-08 | LibJS: Interpreter::this_value() => this_value(GlobalObject&) | Andreas Kling |
2020-06-08 | LibWeb: Add Page abstraction between PageView and main Frame | Andreas Kling |
2020-06-08 | LibJS+LibWeb: Remove a bunch of calls to Interpreter::global_object() | Andreas Kling |
2020-06-07 | LibWeb: Use HTML::TagNames globals in the new HTML parser | Andreas Kling |
2020-06-07 | LibWeb: Add HTML::TagNames namespace for global tag name FlyStrings | Andreas Kling |
2020-06-07 | LibWeb: Add (stub) HTMLTable{,Cell,Row}Element C++ classes | Andreas Kling |
2020-06-07 | LibWeb: Fix codepoint_from_entity() never returning an error | Andreas Kling |
2020-06-07 | LibWeb: Fix tokenizer swallowing an extra token after a named entity | Andreas Kling |
2020-06-07 | LibWeb: Unbreak <a title> tooltips in the main frame | Andreas Kling |
2020-06-07 | LibWeb: Start fleshing out support for relative CSS units | Andreas Kling |
2020-06-07 | LibWeb: Fix broken paint invalidation after subframe changes | Andreas Kling |
2020-06-07 | LibWeb: Let subframes propagate paint invalidations via host element | Andreas Kling |
2020-06-07 | LibWeb: Remove unused Document::on_layout_updated hook | Andreas Kling |
2020-06-07 | LibWeb: Open subframe links inside the subframe itself | Andreas Kling |
2020-06-07 | LibWeb: Add per-Frame EventHandler, handle mouse events recursively | Andreas Kling |
2020-06-07 | LibWeb: Move Frame.{cpp,h} into a new Frame/ directory | Andreas Kling |