summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/DOM
AgeCommit message (Expand)Author
2019-10-08LibHTML: Add ResourceLoader to support protocol-agnostic URL loadingAndreas Kling
2019-10-08LibHTML: Use an enum for CSS property ID'sAndreas Kling
2019-10-07LibHTML: Make the CSS and HTML parsers take StringViewsAndreas Kling
2019-10-07LibHTML: Start adding support for <link rel="stylesheet">Andreas Kling
2019-10-07LibHTML: Rename "style_properties" to "style" everywhereAndreas Kling
2019-10-06LibHTML: Add Node::first_ancestor_of_type<T>()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 Node::{next,previous}_element_sibling()Andreas Kling
2019-10-06LibHTML: Support width/height attributes on imagesConrad 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-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-05LibHTML: Support rendering <img src> with file:// URLsAndreas 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: Add load(URL) and reload() functions to HtmlViewAndreas 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: Add a Frame class and use it for document layout widthAndreas Kling
2019-10-04LibHTML: LayoutText should always use parent's style propertiesAndreas Kling
2019-10-01LibHTML: Implement the <hr> elementAndreas Kling
2019-09-29LibHTML: Add a simple <style> element for inline CSSAndreas Kling
2019-09-29LibHTML: Add inserted_into() and removed_from() TreeNode callbacksAndreas Kling
2019-09-29LibHTML: Non-element (Text) Nodes should get style from their parentAndreas Kling
2019-09-29LibHTML: Add a way to get a Document's titleAndreas Kling
2019-09-29LibHTML: Add Node::text_content()Andreas Kling
2019-09-29LibHTML: Add HTMLHeadingElement for <h1> through <h6>Andreas Kling
2019-09-29LibHTML: Implement basic HTMLElement.title supportAndreas Kling
2019-09-29LibHTML: Detect hovering over linksAndreas Kling
2019-09-29LibHTML: Have Document track its hovered NodeAndreas Kling
2019-09-29LibHTML: Make sure every DOM Node belongs to a DocumentAndreas Kling
2019-09-28LibHTML: Add virtual Node::tag_name()Andreas Kling
2019-09-28LibHTML: Add Document::normalize()Sergey Bugaev
2019-09-28LibHTML: Move layout tree building to NodeSergey Bugaev
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-08-01LibHTML: Make some use of Vector::empend().Andreas Kling
2019-07-04Libraries: Create top level directory for libraries.Andreas Kling