summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb
AgeCommit message (Expand)Author
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: Special-case initialization of HTML::AttributeNames::class_Andreas Kling
2020-06-03LibWeb: Buffer text node character insertions in the new parserAndreas Kling
2020-06-03LibWeb: Use HTML::AttributeNames::foo instead of FlyString("foo")Andreas Kling
2020-06-02LibWeb: Remove assertion in HTMLImageElement::resource_did_load()Andreas Kling
2020-06-02LibWeb: Share decoded images at the Resource level :^)Andreas Kling
2020-06-02LibWeb: Fix tokenizing scripts with '<' in themAndreas Kling
2020-06-02LibWeb: Port ImageStyleValue to the ResourceClient interfaceAndreas Kling
2020-06-02LibWeb: Avoid an unnecessary temporary variable in HTMLImageElementAndreas Kling
2020-06-02LibWeb: Port HTMLLinkElement to the ResourceClient interfaceAndreas Kling
2020-06-02LibWeb: Parse barebones document without doctype, <html>, etc.Andreas Kling
2020-06-01LibWeb: Protect ourselves during ResourceClient iterationAndreas Kling
2020-06-01LibWeb: Support "td" and "th" start tags during "in table body"Andreas Kling
2020-06-01LibWeb: Add a naive Resource cacheAndreas Kling
2020-06-01LibWeb: Start building a new Resource class to share more resourcesAndreas Kling
2020-06-01LibWeb: Move ResourceLoader into a new Loader/ directoryAndreas Kling
2020-06-01LibWeb: Tokenize "anything else" in CommentLessThanSignBangDashDashAndreas Kling
2020-06-01LibWeb: Make input widget (buttons, text boxes, etc) scroll with pageAndreas 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
2020-05-30LibWeb: Handle "dd" and "dt" end tags during "in body"Andreas Kling
2020-05-30LibWeb: Support parsing "select" elements (outside of tables)Andreas Kling
2020-05-30LibWeb: Hack the parser to dodge <template> elements in <head> for nowAndreas Kling
2020-05-30LibWeb: Fix typo in StackOfOpenElements::topmost_special_node_below()Andreas Kling
2020-05-30LibWeb: Don't crash when encountering <svg> or <math> elementsAndreas Kling
2020-05-30LibWeb: Parse "textarea" tags during the "in body" insertion modeAndreas Kling
2020-05-30LibWeb: Add missing special tag case in the "in body" insertion modeAndreas Kling
2020-05-30LibWeb: Correctly determine whether a block has only inline childrenAndreas Kling
2020-05-30LibWeb: Implement more table-related insertion modesAndreas Kling
2020-05-30LibWeb: Handle AAA situation where there's no formatting element foundAndreas Kling
2020-05-30LibWeb: Implement some more RAWTEXT stuff in the tokenizerAndreas Kling
2020-05-30LibWeb: Implement more of the tokenizer statesTheDumpap
2020-05-30LibWeb: Implement enough parsing to parse the HTML spec front page :^)Andreas Kling
2020-05-30LibWeb: Use the globals from HTML::AttributeNames in style resolutionAndreas Kling
2020-05-30LibWeb: Handle end-of-file token during "in body" insertion modeAndreas Kling
2020-05-30LibWeb: Add default UA style for <hgroup> elementAndreas Kling
2020-05-30LibWeb: Flesh out the "in head" insertion mode and add missing casesAndreas Kling