summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/DOM
AgeCommit message (Expand)Author
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
2020-06-23LibWeb: Make wrapper factory functions take JS::GlobalObject&Andreas Kling
2020-06-23LibWeb: Let HTMLScriptElement call Document::run_javascript()Andreas Kling
2020-06-23LibWeb: Remove hacky old ways of running <script> element contentsAndreas Kling
2020-06-23LibWeb: Use ImageLoader::has_image() in HTMLObjectElementAndreas Kling
2020-06-22LibWeb+Browser: Decode non-animated images out-of-process :^)Andreas Kling
2020-06-22LibWeb: Generate CanvasRenderingContext2D bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Add Node.insertBefore(Node node, Node? child)Andreas Kling
2020-06-21LibWeb: Generate Event and MouseEvent bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Generate ImageData bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Generate HTMLCanvasElement bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Generate HTMLImageElement bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Add HTMLElement wrapperAndreas Kling
2020-06-21LibWeb: Add EventTarget.removeEventListener()Andreas Kling
2020-06-21LibWeb: Generate EventTarget bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Add Element.tagName and Element.classNameAndreas Kling
2020-06-21LibWeb: Generate Element bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Update parser with more insertion modes :^)stelar7