summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb
AgeCommit message (Expand)Author
2022-03-02LibWeb: Support (and validate) prefixes in Document.createElementNS()Andreas Kling
2022-03-02LibWeb: Fix logic error in Document::validate_qualified_name()Andreas Kling
2022-03-02LibWeb: Fix bogus result from "validate and extract" DOM operationAndreas Kling
2022-03-02LibWeb: Support DOMImplementation.createDocument() doctype parameterAndreas Kling
2022-03-01LibWeb: Handle height:auto separately for BFC root vs other block boxesAndreas Kling
2022-03-01LibWeb: Implement <button>'s activation behaviourLuke Wilde
2022-03-01LibWeb: Associate form elements with a form in parsing and dynamicallyLuke Wilde
2022-03-01LibWeb: Implement HTMLButtonElement.typeLuke Wilde
2022-03-01LibWeb: Add form associated element categoriesLuke Wilde
2022-03-01LibWeb: Move enabled() to FormAssociatedElement and follow the specLuke Wilde
2022-03-01LibWeb: Fix incorrect check in BrowsingContext::is_top_levelLuke Wilde
2022-03-01LibWeb: Always include floats when computing height:auto for blocksAndreas Kling
2022-03-01LibWeb: Fix wrong height:auto computation for block with floating childAndreas Kling
2022-03-01LibWeb: Add origin property to window objectAlex M
2022-02-28LibWeb: Also apply default button styles to <button>, not just <input>Linus Groh
2022-02-28LibWeb: Add support for 'view-box' attribute to SVGsTobias Christiansen
2022-02-28LibWeb: Make SVGSVGElement's view_box() constTobias Christiansen
2022-02-28LibWeb: Allow <input type="button/submit/reset"> to be styledVrins
2022-02-28LibWeb: Remove unused variable in required_box_type_transformation()Andreas Kling
2022-02-28LibWeb: Store box's containing line box fragment in FormattingStateAndreas Kling
2022-02-28LibWeb: Use copy-on-write to make cloning a FormattingState much cheaperAndreas Kling
2022-02-28LibWeb: Don't crash on content with SVG elements outside of <svg>Andreas Kling
2022-02-28LibWeb: Move some of PaintContext out of lineAndreas Kling
2022-02-28LibWeb: Don't blockify or inlinify boxes with already-correct typeAndreas Kling
2022-02-28LibWeb: Blockify children of parents with display:grid or display:flexAndreas Kling
2022-02-28LibWeb: Split CSS box type transformations into a helper functionAndreas Kling
2022-02-28LibWeb: Improve Layout::Box has-definite-size? computationAndreas Kling
2022-02-28LibWeb: Store bottom edge location with each LineBoxAndreas Kling
2022-02-28LibWeb: For height:auto blocks, measure from top of *top* line boxAndreas Kling
2022-02-28LibWeb: Add FormattingState::clone()Andreas Kling
2022-02-28LibWeb: Store Layout::Box overflow data in Optional instead of OwnPtrAndreas Kling
2022-02-28LibWeb: Use Vector<LineBoxFragment> instead of NonnullOwnPtrVectorAndreas Kling
2022-02-28LibWeb: Use coordinate instead of WeakPtr for box->fragment connectionAndreas Kling
2022-02-28LibWeb: Pass state to create_independent_formatting_context_if_needed()Andreas Kling
2022-02-27Everywhere: Make JSON serialization fallibleIdan Horowitz
2022-02-26LibWeb: Validate the qualified name in createDocumentType()Andreas Kling
2022-02-26LibWeb: Add simple ad-hoc version of window.postMessage()Andreas Kling
2022-02-26LibWeb: Reorganize window.parent so it looks a bit more like the specAndreas Kling
2022-02-26LibWeb: Implement :nth-of-type and :nth-last-of-type selectors :^)Sam Atkins
2022-02-26LibWeb: Implement Range.comparePointLuke Wilde
2022-02-26LibWeb: Implement Range.isPointInRangeLuke Wilde
2022-02-26LibWeb: Implement Range.intersectsNodeLuke Wilde
2022-02-26LibWeb: Add Range.detachLuke Wilde
2022-02-26LibWeb: Implement Range.selectNodeContentsLuke Wilde
2022-02-26LibWeb: Implement Range.collapseLuke Wilde
2022-02-26LibWeb: Implement Range.selectNodeLuke Wilde
2022-02-26LibWeb: Implement Range.compareBoundaryPointsLuke Wilde
2022-02-26LibWeb: Implement Range.set{Start,End}{Before,After}Luke Wilde
2022-02-26LibWeb: Make Range.setStart and Range.setEnd spec compliantLuke Wilde
2022-02-26LibWeb: Make TreeNode::child_count return size_t instead of intLuke Wilde