summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Parser
AgeCommit message (Expand)Author
2020-06-16LibWeb: Make Element::tag_name() return a const FlyString&Andreas Kling
2020-06-15LibWeb: Fix broken parsing of </form> during "in body" insertionAndreas Kling
2020-06-15LibWeb: Fix broken parsing of </select> during "in select" insertionAndreas Kling
2020-06-15LibWeb: Just ignore <script> elements that failed to load the scriptAndreas Kling
2020-06-14LibWeb: Fully implement HTML parser "in table" insertion modeLuke
2020-06-14LibWeb: Implement HTML parser "in column group" insertion modeLuke
2020-06-14LibWeb: Implement HTML parser "in caption" insertion modeLuke
2020-06-14LibWeb: Implement all CDATA tokenizer statesLuke
2020-06-14LibWeb: Fully implement all DOCTYPE tokenizer statesLuke
2020-06-14LibWeb: Fully implement all comment tokenizer statesLuke
2020-06-13LibWeb: Fix broken tokenization of hexadecimal character referencesAndreas Kling
2020-06-13LibWeb: Parse and match the :visited pseudo-class (always fails)Andreas Kling
2020-06-12AK: Make string-to-number conversion helpers return OptionalAndreas Kling
2020-06-12LibWeb: Whine about unrecognized CSS properties in debug logAndreas Kling
2020-06-10LibWeb: Ignore backslashes (\) in attribute selectorsAndreas Kling
2020-06-10LibWeb: Parse and match basic "contains" attribute selectors (~=)Andreas Kling
2020-06-10LibWeb: Fix parser interpreting "&quot;" as "&quot"Andreas Kling
2020-06-07LibWeb: Use HTML::TagNames globals in the new HTML parserAndreas Kling
2020-06-07LibWeb: Fix codepoint_from_entity() never returning an errorAndreas Kling
2020-06-07LibWeb: Fix tokenizer swallowing an extra token after a named entityAndreas Kling
2020-06-07LibWeb: Start fleshing out support for relative CSS unitsAndreas Kling
2020-06-06LibWeb: Handle EOF tokens during "text" insertionAndreas Kling
2020-06-06LibWeb: Fully implement all script tokenizer statesLuke
2020-06-05LibWeb: Parse param/source/track start tags during "in body" insertionAndreas Kling
2020-06-05LibWeb: Fix parsing of "<textarea></textarea>"Andreas Kling
2020-06-05LibWeb: Fix missing tokenizer state change in RCDATALessThanSignAndreas Kling
2020-06-04LibWeb: Unbreak character reference and DOCTYPE parsing post-UTF-8Andreas Kling
2020-06-04LibWeb: Make the new HTML parser parse input as UTF-8Andreas Kling
2020-06-04LibWeb: Fix incorrectly consumed characters after reference tokensAndreas Kling
2020-06-04LibWeb: Fix tokenization of attributes with empty attributesAndreas Kling
2020-06-04LibWeb: Handle "html" end tag during "in body"Kyle McLean
2020-06-04LibWeb: Handle "xmp" start tag during "in body"Kyle McLean
2020-06-04LibWeb: Handle "nobr" start tag during "in body"Kyle McLean
2020-06-04LibWeb: Handle "form" end tag during "in body" if stack of open elements does...Kyle McLean
2020-06-04LibWeb: Handle NULL character during "in body"Kyle McLean
2020-06-04LibWeb: Parse "body" end tags during "in body"Kyle McLean
2020-06-04LibWeb: Parse "br" end tags during "in body"Kyle McLean
2020-06-04LibWeb: Parse end tags for "applet", "marquee", and "object" during "in body"Kyle McLean
2020-06-03LibWeb: Call children_changed() on text nodes when flushing charactersAndreas Kling
2020-06-03LibWeb: Buffer text node character insertions in the new parserAndreas Kling
2020-06-02LibWeb: Fix tokenizing scripts with '<' in themAndreas Kling
2020-06-02LibWeb: Parse barebones document without doctype, <html>, etc.Andreas Kling
2020-06-01LibWeb: Support "td" and "th" start tags during "in table body"Andreas Kling
2020-06-01LibWeb: Tokenize "anything else" in CommentLessThanSignBangDashDashAndreas Kling
2020-06-01LibWeb+Browser: Use the new HTML parser by defaultAndreas Kling
2020-06-01LibWeb: Put whining about tokenizer errors behind an #ifdefAndreas Kling
2020-06-01LibWeb: More parser cases in the "in body" and "after after body" modesAndreas Kling
2020-06-01LibWeb: Handle more cases in the SelfClosingStartTag tokenizer stateAndreas Kling
2020-06-01LibWeb: Implement more of the "after head" insertion modeAndreas Kling
2020-05-30LibWeb: Implement more of the ScriptDataEndTagName tokenizer stateAndreas Kling