summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/Parser
AgeCommit message (Expand)Author
2020-01-18Meta: Add license header to source filesAndreas Kling
2019-12-30LibHTML: Ignore all CSS rules starting with "@" for nowAndreas Kling
2019-12-26LibHTML: Remove fixed FIXMEShannon Booth
2019-12-16LibHTML: Support the :only-child pseudo classAndreas Kling
2019-12-16LibHTML: Support the :empty pseudo classAndreas Kling
2019-12-16LibHTML: Support the :first-child and :last-child pseudo classesAndreas Kling
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-11-28LibHTML: Just swallow :not selectors for nowAndreas Kling
2019-11-28LibHTML: CSS parser should accept "foo>bar", not just "foo > bar"Andreas Kling
2019-11-28LibHTML: Update CSS parser with terminology from Selectors Level 4Andreas Kling
2019-11-27LibHTML: Implement compound selectorsAndreas Kling
2019-11-25LibHTML: Improve CSS parser's handling of values somewhatAndreas Kling
2019-11-25LibHTML: Store the HTML parser input along with the created DocumentAndreas Kling
2019-11-21LibHTML: Handle stand-alone attribute selectorsAndreas Kling
2019-11-21LibHTML: Parse <element attribute=value> correctlyAndreas Kling
2019-11-21LibHTML: Implement some attribute selector supportAndreas Kling
2019-11-21LibHTML: Make the HTML parser handle <div attr> and <div attr="">Andreas Kling
2019-11-19LibHTML: Tolerate empty CSS rulesAndreas Kling
2019-11-19LibHTML: Implement the universal selector ("*")Andreas Kling
2019-11-18LibHTML: Implement some basic floating point CSS value parsingAndreas Kling
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