summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2019-10-06LibGUI: Add "Go home" to GCommonActionsAndreas Kling
2019-10-06LibDraw: Parse some more color string formats found on the webAndreas Kling
2019-10-06LibHTML: Optionally pass document URL to the HTML parserAndreas Kling
2019-10-06LibHTML: Add Node::first_ancestor_of_type<T>()Andreas Kling
2019-10-06GFilePicker: Fix crash in get_save_filepath()Andreas Kling
2019-10-06LibHTML: Templatize Node::first_child_of_type<T>()Andreas Kling
2019-10-06LibHTML: Add is<ElementType> and to<ElementType> helper functionsAndreas Kling
2019-10-06LibHTML: Add adjacent (+) and general (~) sibling combinatorsAndreas Kling
2019-10-06LibHTML: Add Node::{next,previous}_element_sibling()Andreas Kling
2019-10-06LibHTML: Implement immediate-child selectors (#foo > #bar)Andreas Kling
2019-10-06LibHTML: Implement matching for descendant selectorsAndreas Kling
2019-10-06LibHTML: Fall back to the system default font if we can't find a fontAndreas Kling
2019-10-06LibHTML: Add a little bit of margin around <hr> elementsAndreas Kling
2019-10-06LibHTML: Use current style's text colour for alt text on imagesConrad Pankoff
2019-10-06LibHTML: Trim image alt text to the right if necessaryConrad Pankoff
2019-10-06LibHTML: Support width/height attributes on imagesConrad Pankoff
2019-10-06LibHTML: Draw image alt text as black rather than whiteConrad Pankoff
2019-10-06LibHTML: Use image URL as alt text if alt is missingConrad Pankoff
2019-10-06LibHTML: Load image resource when src attribute is setConrad Pankoff
2019-10-06LibHTML: Add function for invalidating the document layoutConrad Pankoff
2019-10-06LibGUI: Define supported functions for using command line argumentsConrad Pankoff
2019-10-06LibHTML: Make the text-decoration inheritance quirk actually workAndreas Kling
2019-10-06LibHTML: Unbreak parsing of standalone declarationsAndreas Kling
2019-10-06LibHTML: Move font loading from LayoutText to StylePropertiesAndreas Kling
2019-10-06LibHTML: LayoutInline can only be constructed with an ElementAndreas Kling
2019-10-06LibHTML: LayoutText should inherit from LayoutNode directlyAndreas Kling
2019-10-06LibHTML: Parse descendant relations in CSS selectorsAndreas Kling
2019-10-06LibHTML: Respect the link color set via <body link>Andreas Kling
2019-10-06LibHTML: Parse link, alink and vlink in <body> and pass to DocumentAndreas Kling
2019-10-06LibHTML: Add a per-attribute callback for Elements to parse attributesAndreas Kling
2019-10-06LibHTML: Various little improvements to the CSS parserAndreas Kling
2019-10-05LibHTML: Anonymous blocks *should* inherit some propertiesAndreas Kling
2019-10-05LibHTML: Support rendering <img src> with file:// URLsAndreas Kling
2019-10-05LibHTML: Let's not have anonymous blocks inherit their parent's styleAndreas Kling
2019-10-05LibHTML: Implement basic layout for inline <img alt>Andreas Kling
2019-10-05LibHTML: Make Node::create_layout_node() virtualAndreas Kling
2019-10-05LibHTML: Flesh out <img> element with LayoutImage and LayoutReplacedAndreas Kling
2019-10-05LibHTML: Always fill the entire paint event rect with backgroundAndreas Kling
2019-10-05LibHTML: Fire the HtmlView::on_title_change hook after a load finishesAndreas Kling
2019-10-05LibHTML: Render list markers in the same color as textAndreas Kling
2019-10-05LibHTML: Add load(URL) and reload() functions to HtmlViewAndreas Kling
2019-10-05LibGUI: Add a "reload" action to GCommonActionsAndreas Kling
2019-10-05LibGUI: Add back/forward actions to GCommonActionsAndreas Kling
2019-10-05LibHTML: Make StyleResolver responsible for loading the default styleAndreas Kling
2019-10-04LibHTML: Make CSS inheritance slightly less hackyAndreas Kling
2019-10-04LibHTML: Add support for <font color>Andreas Kling
2019-10-04LibHTML: Add support for <body bgcolor="#rrggbb" text="#rrggbb">Andreas Kling
2019-10-04LibHTML: Rename LayoutNode::style_properties() to LayoutNode::style()Andreas Kling
2019-10-04LibHTML: Rename ComputedStyle to BoxModelMetricsAndreas Kling
2019-10-04LibHTML: Add a Frame class and use it for document layout widthAndreas Kling