summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/DOM/Document.cpp
AgeCommit message (Expand)Author
2019-11-04LibHTML: Add a convenient way to get from any layout node to the rootAndreas Kling
2019-10-28LibHTML: Add Document::force_layout()Andreas Kling
2019-10-21LibHTML: Add Document::get_element_by_id() and get_elements_by_name()Andreas Kling
2019-10-19LibHTML: DOM fixup should handle a completely empty documentAndreas Kling
2019-10-19LibHTML: Batch style updates and make them start from the rootAndreas Kling
2019-10-19LibHTML: Implement basic tiled background image supportAndreas Kling
2019-10-15LibHTML: Simplify Node::create_layout_node()Andreas Kling
2019-10-15LibHTML: Move layout tree building to a LayoutTreeBuilder classAndreas Kling
2019-10-14LibHTML: Implement basic partial style invalidationAndreas Kling
2019-10-14LibHTML: Rename Document's invalidate_{style,layout}() to update_foo()Andreas Kling
2019-10-14LibHTML: Implement basic :hover pseudo-class supportAndreas Kling
2019-10-13LibHTML: Split layout invalidation into style and layout invalidationAndreas Kling
2019-10-13LibHTML: Move layout root from HtmlView to DocumentAndreas Kling
2019-10-12LibHTML: Add Comment and CharacterData nodes and improve HTML parsingAndreas Kling
2019-10-12LibHTML: Move Element construction to a separate fileAndreas Kling
2019-10-10LibHTML: Fix relative URL completion when document URL ends in a slashAndreas Kling
2019-10-09LibHTML: Document::detach_from_frame() should actually detachAndreas Kling
2019-10-09LibHTML: Add basic <!DOCTYPE> parsing and a DocumentType classAndreas Kling
2019-10-09LibHTML: Rename Document::normalize() to fixup() and always do itAndreas Kling
2019-10-08LibHTML: Use an enum for CSS property ID'sAndreas 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 function for invalidating the document layoutConrad Pankoff
2019-10-06LibHTML: Parse link, alink and vlink in <body> and pass to DocumentAndreas Kling
2019-10-05LibHTML: Make Node::create_layout_node() virtualAndreas Kling
2019-10-05LibHTML: Add load(URL) and reload() functions to HtmlViewAndreas Kling
2019-10-04LibHTML: Add support for <body bgcolor="#rrggbb" text="#rrggbb">Andreas Kling
2019-10-04LibHTML: Add a Frame class and use it for document layout widthAndreas Kling
2019-09-29LibHTML: Add a way to get a Document's titleAndreas Kling
2019-09-29LibHTML: Make sure every DOM Node belongs to a DocumentAndreas Kling
2019-09-28LibHTML: Add Document::normalize()Sergey Bugaev
2019-07-04Libraries: Create top level directory for libraries.Andreas Kling