summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb
AgeCommit message (Expand)Author
2021-11-18LibWeb: Move BrowsingContext into HTML/Andreas Kling
2021-11-18LibWeb: Delete CSSLoaderSam Atkins
2021-11-18LibWeb: Make HTMLLinkElement responsible for its own loadingSam Atkins
2021-11-18LibWeb: Remove `for_first_not_loaded_import_rule()` :^)Sam Atkins
2021-11-18LibWeb: Remove redundant `@import`-handling code from CSSLoaderSam Atkins
2021-11-18LibWeb: Make `@import` rules functional again :^)Sam Atkins
2021-11-17LibWeb: Implement `background-repeat: round` :^)Sam Atkins
2021-11-17LibWeb: Implement `background-repeat: space`Sam Atkins
2021-11-17LibWeb: Implement background-size :^)Sam Atkins
2021-11-17LibWeb: Implement background-position and background-origin :^)Sam Atkins
2021-11-17LibWeb: Stop consuming too many tokens when parsing background-positionSam Atkins
2021-11-17LibWeb: Manually tile background imagesSam Atkins
2021-11-17LibWeb: Implement background-clip :^)Sam Atkins
2021-11-17LibWeb: Store all background properties in BackgroundLayerDataSam Atkins
2021-11-17LibWeb: Remove background_image from NodeWithStyleSam Atkins
2021-11-17LibWeb: Remove background-repeat/image fields and gettersSam Atkins
2021-11-17LibWeb: Paint backgrounds with multiple layers :^)Sam Atkins
2021-11-17LibWeb: Store background layers in ComputedValuesSam Atkins
2021-11-17LibWeb: Stop 'no-repeat' from expanding the background areaSam Atkins
2021-11-17LibWeb: Handle multiple backgrounds in StyleComputerSam Atkins
2021-11-17LibWeb: Bring BackgroundStyleValue::to_string() to specSam Atkins
2021-11-17LibWeb: Parse multiple backgrounds :^)Sam Atkins
2021-11-17LibWeb: Parse comma-separated lists for most background propertiesSam Atkins
2021-11-17LibWeb: Prevent copying CSS TokenStreamSam Atkins
2021-11-17LibWeb: Remove CSS Parser method overloads with no TokenStream parameterSam Atkins
2021-11-17LibWeb: Remove ParsingContext parameter from private CSS Parser methodsSam Atkins
2021-11-17LibWeb: Make CSS Parser methods non-staticSam Atkins
2021-11-17LibWeb: Add NodeWithStyleAndBoxModelMetrics to Forward.hSam Atkins
2021-11-17AK: Convert AK::Format formatting helpers to returning ErrorOr<void>Andreas Kling
2021-11-17AK: Make JSON parser return ErrorOr<JsonValue> (instead of Optional)Andreas Kling
2021-11-13LibWeb: Allow setting the width & height properties on <canvas> elementsAndreas Kling
2021-11-11LibWeb: Implement WebAssembly::validate()Ali Mohammad Pur
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-11-10AK+Everywhere: Stop including Vector.h from StringView.hAndreas Kling
2021-11-10LibWeb: Make property_initial_value() return a NonnullRefPtrSam Atkins
2021-11-10LibWeb: Allow `none` value for `transform` propertySam Atkins
2021-11-10LibWeb: Add initial values for all CSS propertiesSam Atkins
2021-11-10LibWeb: Add initial values and longhands to `background` definitionSam Atkins
2021-11-10LibWeb: Correct initial values in Properties.jsonSam Atkins
2021-11-10LibWeb: Parse background-size as part of background shorthandSam Atkins
2021-11-10LibWeb: Parse `background-size` propertySam Atkins
2021-11-10LibWeb: Add BackgroundSizeStyleValueSam Atkins
2021-11-10LibWeb: Store Repeat values directly in BackgroundRepeatStyleValueSam Atkins
2021-11-10LibWeb: Remove concept of CSS pseudo-propertiesSam Atkins
2021-11-10LibWeb: Combine background-repeat-x/y pseudo-propertiesSam Atkins
2021-11-10LibWeb: Use BackgroundRepeatStyleValue in `background` shorthandSam Atkins
2021-11-10LibWeb: Parse `background-clip` and `background-origin`Sam Atkins
2021-11-10LibWeb: Parse `background-attachment` as part of `background` propertySam Atkins
2021-11-10LibWeb: Add `background-position` to `background` propertySam Atkins
2021-11-10LibWeb: Parse CSS `background-position` propertySam Atkins