summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb
AgeCommit message (Expand)Author
2021-10-31LibWeb: Convert all generated bindings to ThrowCompletionOrTimothy Flynn
2021-10-31LibWeb: Convert the Navigator object to ThrowCompletionOrTimothy Flynn
2021-10-31LibWeb: Convert the CSS namespace object to ThrowCompletionOrTimothy Flynn
2021-10-31LibWeb: Convert the Window object to ThrowCompletionOrTimothy Flynn
2021-10-31LibWeb: Convert the Location object to ThrowCompletionOrTimothy Flynn
2021-10-29LibWeb: Render any specified list-style-image for list itemsTimothy Flynn
2021-10-29LibWeb: Support parsing some data: URLs in CSSTimothy Flynn
2021-10-29LibWeb: Remove extraneous semi-colonTimothy Flynn
2021-10-28LibWeb: Add Element.webkitMatchesSelectorLuke Wilde
2021-10-28LibWeb: Don't try to layout list-item markers in BFCAndreas Kling
2021-10-28LibWeb: Add Layout::Box::border_box_as_relative_rect()Andreas Kling
2021-10-28LibWeb: Small fix to height computation for block-with-inline-childrenAndreas Kling
2021-10-28LibWeb: Use border edges when computing overflow for the ICBAndreas Kling
2021-10-28LibWeb: Remove unused CSS::Length::relative_length_to_px(Layout::Node)Andreas Kling
2021-10-28LibWeb: Don't force line box fragments height to be at least line-heightAndreas Kling
2021-10-28LibWeb: Make non-absolute values for line-height fall back to font-sizeAndreas Kling
2021-10-28LibWeb: Clip descendants of boxes with overflow:hiddenAndreas Kling
2021-10-28LibWeb: Treat width:auto on tables as fit-contentAndreas Kling
2021-10-28LibWeb: Allow whitespace when parsing "!important" in CSSSam Atkins
2021-10-28LibWeb: Allow whitespace inside CSS attribute selectorsSam Atkins
2021-10-28LibWeb: Remove two lowercase string creations from Element::has_classTimothy Flynn
2021-10-28LibWeb: Do not create lowercase strings in NamedNodeMap::get_attributeTimothy Flynn
2021-10-28LibWeb: Remove duplicated auto height computationBen Wiederhake
2021-10-28LibWeb: Remove StyleProperties::set_property(PropertyID, StringView)Andreas Kling
2021-10-28LibWeb: Properly handle the <td align> attributeAndreas Kling
2021-10-27Everywhere: Rename left/right-click to primary/secondaryFiliph Sandström
2021-10-27LibWeb: Don't create anonymous table boxes around whitespaceAndreas Kling
2021-10-27LibWeb: Remove Layout::Box::width_of_logical_containing_block()Andreas Kling
2021-10-27LibWeb: Add fast_is<T>() for HTML::HTMLHtmlElementAndreas Kling
2021-10-27LibWeb: Add fast_is<T>() for Layout::LabelAndreas Kling
2021-10-26LibWeb: Implement URLSearchParams.getAllLuke Wilde
2021-10-26LibWeb: Fix inline blocks swallowing trailing whitespaceFelix Rauch
2021-10-24LibWeb: Remove now-unnecessary String copy when parsing CSS colorsSam Atkins
2021-10-24LibJS: Rename PropertyName to PropertyKeyAndreas Kling
2021-10-23AK+Everywhere: Make Base64 decoding fallibleBen Wiederhake
2021-10-23LibWeb: Syntax-highlight CSS within HTML :^)Sam Atkins
2021-10-23LibWeb: Implement first draft of CSS syntax highlighting :^)Sam Atkins
2021-10-23LibWeb: Record position information in CSS TokensSam Atkins
2021-10-23LibWeb: Add CSS Tokenizer::consume_as_much_whitespace_as_possible()Sam Atkins
2021-10-23LibWeb: Add spec links to CSS TokenizerSam Atkins
2021-10-23LibWeb: Implement hashless hex color quirkSam Atkins
2021-10-23LibWeb: Explicitly cast parameters to Color::from_hsl/hsla()Sam Atkins
2021-10-23LibGfx+LibWeb: Move "transparent" keyword into Color::from_string()Sam Atkins
2021-10-23LibWeb: Fix off-by-one in initial containing block overflow calculationAndreas Kling
2021-10-23LibWeb: Make CSS ParsingContext's Document* be constSam Atkins
2021-10-23LibWeb: Move image resource request out of ImageStyleValue constructorSam Atkins
2021-10-22LibJS: Convert Array AOs to ThrowCompletionOrIdan Horowitz
2021-10-21LibWeb: Use is_single_line() and add spec comments to FFC step 8Andreas Kling
2021-10-21LibWeb: Include flex-direction in layout tree dumpsAndreas Kling
2021-10-21LibJS: Convert NativeFunction::{call,construct}() to ThrowCompletionOrLinus Groh