summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2020-05-26LibWeb: Add document.querySelector()Linus Groh
2020-05-25LibLine: Change get_line to return a Result<String, Error>AnotherTest
2020-05-25LibWeb: Start fleshing out the "in table" parser insertion modeAndreas Kling
2020-05-25LibWeb: Handle some more parser inputs in the "in head" insertion modeAndreas Kling
2020-05-25LibWeb: Add a PARSE_ERROR() macro to the new HTML parserAndreas Kling
2020-05-25LibWeb: Flesh out the remaining DOCTYPE related tokenizer statesAndreas Kling
2020-05-25LibWeb: Checking for "DOCTYPE" should be case insensitive in tokenizerAndreas Kling
2020-05-25LibWeb: Use String::is_one_of() a bunch in the HTML parserAndreas Kling
2020-05-25LibJS: Implement basic for..in and for..of loopsLinus Groh
2020-05-25LibWeb: Add navigator.language and navigator.languagesLinus Groh
2020-05-25LibGUI: Add flag to TextDocument's word break locator methodsFalseHonesty
2020-05-25LibWeb: Add missing copyright headerAndreas Kling
2020-05-24LibWeb: Finally parse enough that we can actually handle welcome.html!Andreas Kling
2020-05-24LibWeb: Yet more work towards parsing www/welcome.html :^)Andreas Kling
2020-05-24LibWeb: A whole bunch of work towards spec-compliant <script> elementsAndreas Kling
2020-05-24LibWeb: Add HTMLScriptElement to the forwarding headerAndreas Kling
2020-05-24LibWeb: Add some helpers to the DOM Node classAndreas Kling
2020-05-24LibWeb: Add a way to opt out of TreeNode::append_child() notificationsAndreas Kling
2020-05-24LibWeb: Parse enough to handle a <style> inside a <head> :^)Andreas Kling
2020-05-24LibWeb: Support comments in the "in head" insertion modeAndreas Kling
2020-05-24LibWeb: More work on the HTML parser and tokenizerAndreas Kling
2020-05-24LibWeb: Start implementing character token parsingAndreas Kling
2020-05-24LibWeb: Factor out the "stack of open elements" into its own classAndreas Kling
2020-05-24LibWeb: Remove tokenizer's premature character buffering optimizationAndreas Kling
2020-05-24LibJS: Make Array.prototype.includes() genericLinus Groh
2020-05-24LibJS: Make Array.prototype.lastIndexOf() genericLinus Groh
2020-05-24LibJS: Make Array.prototype.indexOf() genericLinus Groh
2020-05-24LibGfx: Add Painter::fill_ellipse()Sergey Bugaev
2020-05-24LibJS: Use the new math constantsSergey Bugaev
2020-05-24LibM: Add M_SQRT2 and M_SQRT1_2Sergey Bugaev
2020-05-24LibJS: add Array.prototype.reduceRight()Marcin Gasperowicz
2020-05-24LibJS: Refactor AccessorLinus Groh
2020-05-24LibWeb: Fix copy-paste error in HTMLDocumentParser (#2358)Daniel Gustafsson
2020-05-24LibDebug: Make sure to not single step the program twiceItamar
2020-05-24LibDebug: Tolerate missing debug informationItamar
2020-05-24LibWeb: Improve support for white-space CSS property (#2348)Jack Byrne
2020-05-24LibWeb: HtmlTokenizer.cpp: fix ON_WHITESPACE macroEmanuele Torre
2020-05-24LibWeb: Add hook to HtmlView when a new document is setFalseHonesty
2020-05-24Browser: Add JS ConsoleFalseHonesty
2020-05-24LibGUI: Use word breaks to intelligently navigate a TextEditorFalseHonesty
2020-05-24LibGUI: Add word break locator methods to TextDocumentFalseHonesty
2020-05-24LibWeb: Implement enough HTML parsing to handle a small simple DOM :^)Andreas Kling
2020-05-24LibWeb: Start building the tree building part of the new HTML parserAndreas Kling
2020-05-24LibWeb: Add HTMLFormElement to forwarding headerAndreas Kling
2020-05-24LibWeb: Add "name" to DocumentType nodesAndreas Kling
2020-05-23LibWeb: Make hit-testing work with display: inline-block;Andreas Kling
2020-05-23LibWeb: Colorize tag names in layout tree dumps + show element IDsAndreas Kling
2020-05-23LibWeb: Implement a bit more of DOCTYPE tokenizationAndreas Kling
2020-05-23LibWeb: Emit character/comment tokens lazily to accumulate more dataAndreas Kling
2020-05-23LibJS: Use __APPLE__ instead of __MACH__ for MacOS buildMarcin Gasperowicz