summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/DOM
AgeCommit message (Expand)Author
2020-08-04LibWeb: Make sure that head and body always get the HTML elementLuke
2020-08-03LibWeb: Add CharacterData and Text IDL interfacesAndreas Kling
2020-08-03LibWeb: Add Element.{next,previous}ElementSibling IDL attributesAndreas Kling
2020-08-03LibWeb: Move "element sibling" getters to NonDocumentTypeChildNodeAndreas Kling
2020-08-03LibWeb: Add the Document.documentElement APIAndreas Kling
2020-08-03LibWeb: Move contentEditable from Element to HTMLElementLuke
2020-08-02LibWeb: Implement the Element.contentEditable IDL attributeAndreas Kling
2020-08-02LibWeb: Only allow editing of elements with contenteditable="true"Andreas Kling
2020-08-02LibWeb: Allow inserting text at the cursor by typing characters :^)Andreas Kling
2020-08-02LibWeb: Add a basic DOM::Position classAndreas Kling
2020-07-28LibWeb: Add UIEvent class (base of MouseEvent, and others)Andreas Kling
2020-07-28LibWeb: Move the Page/Frame/EventHandler classes into Page/Andreas Kling
2020-07-28LibWeb: Move the CSS parser into CSS/Parser/Andreas Kling
2020-07-28LibWeb: Move the HTML parser into HTML/Parser/Andreas Kling
2020-07-28LibWeb: Move HTML classes into the Web::HTML namespaceAndreas Kling
2020-07-28LibWeb: Move MouseEvent into the UIEvents namespaceAndreas Kling
2020-07-27LibWeb: Add a whole bunch of HTML DOM bindingsLuke
2020-07-26LibWeb: Move CSS classes into the Web::CSS namespaceAndreas Kling
2020-07-26LibWeb: Move DOM classes into the Web::DOM namespaceAndreas Kling
2020-07-26LibWeb: Simplify type traits for SVGGraphicsElementAndreas Kling
2020-07-26LibWeb: Switch to using AK::is and AK::downcastAndreas Kling
2020-07-26LibWeb: Move HTML object model stuff into LibWeb/HTML/Andreas Kling
2020-07-26LibWeb: Refactor SVG files into their own directory; follow spec layoutMatthew Olsson
2020-07-26LibWeb: Abstract common operations of graphical SVG elementsMatthew Olsson
2020-07-26LibGfx: Add FloatPoint methodsMatthew Olsson
2020-07-26LibWeb: Add elliptical curve support to svg path elementsMatthew Olsson
2020-07-26LibWeb: Begin SVG element supportMatthew Olsson
2020-07-24LibWeb: Use [Reflect] for Element.id and Element.className :^)Andreas Kling
2020-07-24LibWeb: Add HTMLElement.lang (and make HTMLElement.title reflecting)Andreas Kling
2020-07-24LibWeb: Add HTMLImageElement.src and HTMLImageElement.altAndreas Kling
2020-07-23LibWeb: Rename Element::tag_name() => local_name()Andreas Kling
2020-07-22LibWeb: Parse "width" and "height" presentation attributes on <img>Andreas Kling
2020-07-22LibWeb: Add a dedicated function for parsing HTML length valuesAndreas Kling
2020-07-21LibWeb: Implement quirks mode detectionLuke
2020-07-16LibWeb: Require parent window argument for MessageBoxTom
2020-07-11LibWeb: Fix EVENT_DEBUG dump compilationKevin Meyer
2020-07-08LibWeb: Don't call did_layout in non-main frame documentsKevin Meyer
2020-07-08LibWeb: Add type for FrameLoader::loadKevin Meyer
2020-07-07LibWeb: Turn floated display:inline elements into block-level elementsAndreas Kling
2020-07-05LibWeb: Use LayoutTableRowGroup for display:table-{header,footer}-groupAndreas Kling
2020-06-28LibWeb: Turn <td width> into a CSS width propertyAndreas Kling
2020-06-28LibWeb: Don't tolerate unit-less lengths (except 0) in standards modeAndreas Kling
2020-06-27LibWeb: Make DOM timers cancellable and stop leaking themAndreas Kling
2020-06-26LibWeb: Add CanvasRenderingContext2D.rotate()Andreas Kling
2020-06-26LibWeb: Implement fragment parsing and use it for Element.innerHTMLAndreas Kling
2020-06-26LibWeb: Add Document.getElementsByTagName()Andreas Kling
2020-06-24LibWeb: Move border width and color into LayoutStyleAndreas Kling
2020-06-24LibWeb: Add CSS::Display enum and StyleProperties::display()Andreas Kling
2020-06-24LibWeb: Rename LayoutNode::style() => specified_style()Andreas Kling
2020-06-23LibWeb: Update PageView content size on page relayoutAndreas Kling