summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML
AgeCommit message (Expand)Author
2019-11-07LibHTML: Make the CSS parser return RefPtr'sAndreas Kling
2019-11-06LibHTML+IRCClient: Add an escape_html_entities() helperAndreas Kling
2019-11-06LibHTML: Make parse_html_document() return a RefPtrAndreas Kling
2019-11-06LibHTML: Rename parse_html() => parse_html_document()Andreas Kling
2019-11-06Revert "LibHTML: Rename parse_html() => parse_html_document()"Andreas Kling
2019-11-06LibHTML: Rename parse_html() => parse_html_document()Andreas Kling
2019-11-06LibHTML: Add parse_html_fragment()Andreas Kling
2019-11-06LibHTML: Add DocumentFragmentAndreas Kling
2019-11-06LibHTML: Add TreeNode::remove_child()Andreas Kling
2019-11-05LibHTML: Build some foundation for text selectionAndreas Kling
2019-11-05LibHTML: Add TreeNode::next_in_pre_order()Andreas Kling
2019-11-04LibHTML: Add a convenient way to get from any layout node to the rootAndreas Kling
2019-11-03POSIX compliance: (most) shell scripts converted to generic shellGeorge Pickering
2019-10-28LibHTML: Add Document::force_layout()Andreas Kling
2019-10-26LibHTML: Make <header> and <footer> be "display: block" by defaultAndreas Kling
2019-10-21LibHTML: <a href="#foo"> should prefer any element type with id=fooAndreas Kling
2019-10-21LibHTML: Clicking on a fragment link should prefer <a id> over <a name>Andreas Kling
2019-10-21LibHTML: Add Document::get_element_by_id() and get_elements_by_name()Andreas Kling
2019-10-20LibHTML: Remove trailing whitespace in line boxesAndreas Kling
2019-10-20LibHTML: Implement "text-align: justify"Andreas Kling
2019-10-20LibHTML: The CSS parser should tolerate whitespace-only stylesheetsAndreas Kling
2019-10-20LibHTML: Rename HTMLImageElement::m_image_loader => m_image_decoderAndreas Kling
2019-10-20LibHTML: HtmlView only needs to store the main Frame, not the DocumentAndreas Kling
2019-10-20LibHTML: Only actually-linked <a> elements should be blue+underlinedAndreas Kling
2019-10-20LibHTML+Browser: Support scrolling to anchor with <a href="#foo">Andreas Kling
2019-10-20LibHTML: Add Element::name() convenience attribute getterAndreas Kling
2019-10-19LibHTML: Don't insert unnecessary line breaks at start of text linesAndreas Kling
2019-10-19LibHTML+Browser: Show target URL of hovered links in Browser statusbarAndreas Kling
2019-10-19LibHTML: DOM fixup should handle a completely empty documentAndreas Kling
2019-10-19LibHTML: Do DOM tree fixup before firing insertion callbacksAndreas Kling
2019-10-19LibDraw: Rename ImageLoader => ImageDecoderAndreas Kling
2019-10-19LibHTML: Make "display: inline-block" generate a LayoutBlock for nowAndreas Kling
2019-10-19LibHTML: Batch style updates and make them start from the rootAndreas Kling
2019-10-19LibHTML: Add TreeNode<T>::for_each_in_subtree(callback)Andreas Kling
2019-10-19LibHTML: Skip over CSS @media rules for nowAndreas Kling
2019-10-19LibHTML: Use the correct inherited color for LayoutListItemMarkerAndreas Kling
2019-10-19LibHTML: Implement basic tiled background image supportAndreas Kling
2019-10-19LibHTML: Replaced elements should not break lines at start of lineAndreas Kling
2019-10-19LibHTML: Ignore completed image loads for already-destroyed <img>'sAndreas Kling
2019-10-19LibHTML: Make TreeNode inherit from Weakable by defaultAndreas Kling
2019-10-19LibHTML: Allow loading of PNG's directly into the HtmlViewAndreas Kling
2019-10-18LibHTML: Add a simple font cacheAndreas Kling
2019-10-18LibHTML: Preserve UTF-8 codepoints when collapsing whitespaceAndreas Kling
2019-10-18LibHTML: CSS parser should trim whitespace from valuesAndreas Kling
2019-10-18LibHTML: Add LayoutNode::first_ancestor_of_type<T>()Andreas Kling
2019-10-18LibHTML: Add typed child/sibling traversal helpers for LayoutNodeAndreas Kling
2019-10-17LibHTML: Only accumulate Text children's content in inline stylesheetsAndreas Kling
2019-10-17LibHTML: Don't assert when encountering an unknown font-weightAndreas Kling
2019-10-17LibHTML: Hard-code LayoutTable to never have inline childrenAndreas Kling
2019-10-17LibHTML: Add is<T> helpers for the table-related LayoutNode subclassesAndreas Kling