summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/Parser
AgeCommit message (Expand)Author
2019-11-18LibHTML: Use floating point numbers throughout the layout treeAndreas Kling
2019-11-18LibHTML: Tolerate "px" suffix on CSS lengthsAndreas Kling
2019-11-18LibHTML: Implement the "margin" shorthand propertyAndreas Kling
2019-11-18LibHTML: Start building a simple code generator for CSS propertiesAndreas Kling
2019-11-07LibHTML: Ignore case in <!DOCTYPE> tags :^)Andreas Kling
2019-11-07LibHTML: Don't swallow '}' as part of CSS property valuesAndreas Kling
2019-11-07LibHTML: Turn "&mdash;" into "-" in the parser for nowAndreas Kling
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-10-20LibHTML: The CSS parser should tolerate whitespace-only stylesheetsAndreas Kling
2019-10-19LibHTML: Do DOM tree fixup before firing insertion callbacksAndreas Kling
2019-10-19LibHTML: Skip over CSS @media rules for nowAndreas Kling
2019-10-18LibHTML: CSS parser should trim whitespace from valuesAndreas Kling
2019-10-14LibHTML: Parse the :link and :hover CSS pseudo-classesAndreas Kling
2019-10-13LibHTML: Handle comments in the CSS parserAndreas 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-09LibHTML: Implement the <blink> elementAndreas 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-09LibHTML: Handle CSS declarations that don't end in ';'Andreas 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-06LibHTML: Optionally pass document URL to the HTML parserAndreas Kling
2019-10-06LibHTML: Add adjacent (+) and general (~) sibling combinatorsAndreas Kling
2019-10-06LibHTML: Unbreak parsing of standalone declarationsAndreas 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: Various little improvements to the CSS parserAndreas Kling
2019-10-05LibHTML: Flesh out <img> element with LayoutImage and LayoutReplacedAndreas 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-01LibHTML: Implement the <hr> elementAndreas Kling
2019-09-30LibHTML: Refactor the CSS parser into a classAndreas Kling
2019-09-30LibHTML: Fix incorrect CSS object modelAndreas 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: Fix broken parsing of ID and class selectorsAndreas Kling
2019-09-29LibHTML: Add a way to get a Document's titleAndreas Kling
2019-09-29LibHTML: Add HTMLHeadingElement for <h1> through <h6>Andreas Kling
2019-09-29LibHTML: Detect hovering over linksAndreas Kling
2019-09-29LibHTML: Make sure every DOM Node belongs to a DocumentAndreas Kling
2019-09-28LibHTML: Respect the CSS "color" property for textAndreas Kling
2019-09-28LibHTML: Parse HTML escape sequencesSergey Bugaev