summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb
AgeCommit message (Expand)Author
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
2020-05-30LibWeb: Handle two kinds of deferred script executionsAndreas Kling
2020-05-30LibWeb: Don't render list item markers for "list-style-type: none"Andreas Kling
2020-05-30LibWeb: Turn <input type=button> into an actual button :^)Andreas Kling
2020-05-30LibWeb: Naive support for CSS "background" shorthandAndreas Kling
2020-05-30LibWeb: Fix accidental swallow of self-closing tag tokensAndreas Kling
2020-05-30LibWeb: Parse "form" tags during the "in body" insertion modeAndreas Kling
2020-05-30LibWeb: Tokenizing a semicolon-less HTML entity is (just a) parse errorAndreas Kling
2020-05-30LibWeb: Handle an error condition for "a" start tag during "in body"Andreas Kling
2020-05-30LibWeb: Parser should prefer the longest matchable HTML entityAndreas Kling
2020-05-30AK+LibC: Add TODO() as an alternative to ASSERT_NOT_REACHED()Andreas Kling
2020-05-30LibWeb: Turn a bunch of ASSERT_NOT_REACHED() in the parser into TODO()Andreas Kling
2020-05-30LibWeb: Improve support for "a" and "li" during "in body" insertionAndreas Kling
2020-05-30LibWeb: Parse "li" start tags in the "in body" insertion modeAndreas Kling
2020-05-30LibWeb: Add all branches from the parsing spec to "in body"Andreas Kling
2020-05-30LibMarkdown: Change MD Document parse API to return a RefPtrFalseHonesty
2020-05-29Meta: Add a script check the presence of "#pragma once" in header filesEmanuele Torre
2020-05-28LibWeb: Add a way to stop the new HTML parserAndreas Kling
2020-05-28LibWeb: Implement more of the "after body" insertion modeAndreas Kling
2020-05-28LibWeb: Parse comments in the "in body" insertion modeAndreas Kling
2020-05-28LibWeb: Implement a bunch more script-related tokenization statesAndreas Kling
2020-05-28LibWeb: Add HTMLToken::make_character()Andreas Kling
2020-05-28LibWeb: Rename Web::HtmlView => Web::PageViewAndreas Kling
2020-05-28LibWeb: Fix HTMLDocumentParser buildAndreas Kling
2020-05-28LibWeb: Remove a misplaced call to close_a_p_element() in "in body"Andreas Kling
2020-05-28LibWeb: Add a StackOfOpenElements helper for "popping until a tag name"Andreas Kling
2020-05-28LibJS: Object index properties have descriptors; Handle sparse indicesMatthew Olsson
2020-05-28LibWeb: replace some tab characters with spacesEmanuele Torre
2020-05-28LibWeb: Fall back to block layout for unimplemented CSS display valuesAndreas Kling
2020-05-28LibWeb: Add default UA style for some table-related elementsAndreas Kling
2020-05-28LibWeb: Plumb content encoding into the new HTML parserAndreas Kling
2020-05-28LibWeb: Parse "input" tags during the "in body" insertion modeAndreas Kling
2020-05-28LibWeb: Parse "td" start tags during "in cell" insertion modeAndreas Kling
2020-05-28LibWeb: Support named character references (e.g "&amp;")Andreas Kling
2020-05-28LibWeb: Implement more table support in the new HTML parserAndreas Kling
2020-05-28LibWeb: Flesh out "reset the insertion mode appropriately" algorithmAndreas Kling
2020-05-28LibWeb: Handle various self-closing tags during "in body" insertionAndreas Kling
2020-05-28LibWeb: Handle inline stylesheets a bit better in the new parserAndreas Kling
2020-05-28LibWeb: Parse documents without DOCTYPE gracefullyAndreas Kling
2020-05-28LibWeb: Add a "quirks mode" flag to DocumentAndreas Kling
2020-05-27LibWeb: Fire a DOMContentLoaded event when the new parser is finishedAndreas Kling
2020-05-27LibWeb: Implement the first half of the Adoption Agency AlgorithmAndreas Kling
2020-05-27LibWeb: Bring up basic external script execution in the new parserAndreas Kling