summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM
AgeCommit message (Expand)Author
2021-04-22LibWeb: Implement document.anchorsAndreas Kling
2021-04-22LibWeb: Implement document.appletsAndreas Kling
2021-04-22LibWeb: Implement a slow but functional HTMLCollection :^)Andreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-16Browser+LibWeb+WebContent: Parse cookies in the OOP tabTimothy Flynn
2021-04-15LibWeb: Expose the MouseEvent::{clientX, clientY} attributesIdan Horowitz
2021-04-14Browser+LibWeb+WebContent: Track the source of document.cookie requestsTimothy Flynn
2021-04-14LibWeb: Implement Node.cloneNode()Linus Groh
2021-04-14LibWeb: Add Element::prefix()Linus Groh
2021-04-13LibWeb: Fix some FIXMEs related to ExceptionOr<T>AnotherTest
2021-04-11LibWeb: Move element_child_count to ParentNode and add its IDL attributeLuke
2021-04-11LibWeb: Add Event.initEventLuke
2021-04-11LibWeb: Add support for optional default values and optional bools in IDLLuke
2021-04-11LibWeb+WebContent: Hook document.cookie to the backend cookie storageTimothy Flynn
2021-04-11LibWeb: Add implementation of Node.compareDocumentPosition()Brian Gianforcaro
2021-04-11LibWeb: Connect existing implementation of Node::is_connected to JS.Brian Gianforcaro
2021-04-10LibWeb: Add a basic implementation of Document.createEvent()Linus Groh
2021-04-10LibWeb: Support nullable EventListener parameters in WrapperGeneratorLinus Groh
2021-04-06LibWeb: Make the node mutation algorithms more spec compliantLuke
2021-04-06LibWeb: Rename "for_each_in_subtree(_of_type)" to "for_each_in_inclusive_subt...Luke
2021-04-06LibWeb: Make the node mutation event functions spec compliantLuke
2021-04-06LibWeb: Add ProcessingInstruction nodeLuke
2021-04-06LibWeb: Remove nodes from their old parent in appendChild/insertBeforeAndreas Kling
2021-04-05LibWeb: Support two-value background-repeatTimothy Flynn
2021-04-04LibWeb: Implement the Screen interfaceLinus Groh
2021-04-03LibWeb: Support rendering background images with 'background-repeat'Timothy Flynn
2021-04-02LibWeb: Run queued promise jobs after callbacksLinus Groh
2021-03-30LibWeb: Get the first DOM node with a 'title' attribute for tooltip areaTimothy Flynn
2021-03-26LibWeb: Call requestAnimationFrame() callback with undefined this valueLinus Groh
2021-03-21LibWeb: Only call page_did_change_title() from main frameLinus Groh
2021-03-16LibWeb: Invalidate element style after setting Element.style.fooAndreas Kling
2021-03-16LibWeb: Add Window.innerWidth and Window.innerHeightAndreas Kling
2021-03-16LibJS: Make Interpreter::run() a void functionLinus Groh
2021-03-15LibWeb: Stub out Document.cookieAndreas Kling
2021-03-13LibWeb: Expose barebones CSSStyleDeclaration to JavaScriptAndreas Kling
2021-03-13LibWeb: Rename StyleDeclaration => CSSStyleDeclaration to match CSSOMAndreas Kling
2021-03-09LibWeb: Rename CSSParser => DeprecatedCSSParserAndreas Kling
2021-03-08LibWeb: Start exposing CSS style sheets to JavaScript :^)Andreas Kling
2021-03-07LibWeb: Split CSS::StyleSheet into StyleSheet and CSSStyleSheetAndreas Kling
2021-03-06LibWeb: Add a couple child node operations to Node and add node typesLuke
2021-03-01LibWeb: Provide file name to JavaScript interpreterJean-Baptiste Boric
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-22LibWeb: Support assigning to document.body when it is nullAndreas Kling
2021-02-21LibWeb: Add Document.createRange()Andreas Kling
2021-02-21LibWeb: Expose the Window object as Document.defaultViewAndreas Kling
2021-02-21LibWeb: Replace WrapperGenerator's snake_name() with String::to_snakecase()Linus Groh
2021-02-20LibWeb: Implement Window.prompt()Linus Groh
2021-02-20LibWeb: Use DOMException in Document::set_body()Linus Groh
2021-02-20LibWeb: Return InvalidCharacterError from Element::set_attribute() for empty ...Linus Groh
2021-02-20LibWeb: Add DOM::ExceptionOr<T> containerLinus Groh