ladybird/Tests/LibWeb/Ref/input
InvalidUsernameException 70c46e081d LibWeb: Correctly calculate nested positioned elements' static position
If there are multiple nested `position: fixed` or `position: absolute`
elements that are positioned based on their static position due to not
specifying any insets, we sum up all their ancestor offsets to calculate
said static position.

However, these offsets represent the offset to the containing block. So
summing up all the ancestor blocks will count elements multiple times
for cases where the containing block is not based on the closest element
capable of forming a containing block (i.e. absolute and fixed position
elements) when multiple such elements are nested.

With this change we only iterate over ancestors forming containing
blocks instead of over all ancestors boxes. To sum up everything between
the box currently being positioned and its containing block, we start
the iteration on the parent box of the current box.

This fixes 3 WPT tests that I could find. But these tests are not
intended to test the error cases fixed here, they just incidentally rely
on the correct behavior. As such, I have added dedicated tests myself.
Note that two of the tests already pass on master, but they seemed like
a good cases to have anyway.
2025-10-14 10:23:27 +02:00
..
css LibWeb/CSS: Test cases for content inside the ::marker pseudo-element 2025-10-10 12:02:16 +01:00
HTML LibWeb: Do nothing when calling CanvasPath.closePath() with empty path 2025-09-06 08:47:48 -04:00
svg LibWeb: Convert blend test to use rectangle rather than circle 2025-09-30 22:33:12 +01:00
wpt-import LibWeb/CSS: Check overflow value before determining box baseline 2025-10-13 09:47:32 +01:00
abspos-escapes-scroll-container.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
abspos-z-index-painting-order.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
alternative-style-sheets.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
anonymous-wrapper-css-visibility.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
background-clip-text-inside-scrollable.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
background-clip-text.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
background-size-calc.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
background-size-near-zero-svg.html Revert "Tests: Replace background-near-zero-svg test with WPT import" 2025-07-07 06:53:21 -04:00
bitmaps-with-scroll-offset.html Tests: Regression test recent image rendering bug when scrolling 2025-03-10 17:14:13 +01:00
block-element-inside-inline-element.html LibWeb: Retain display: contents in ancestor stack for continuations 2025-02-18 23:31:49 +01:00
body-link-attribute.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
border-radius-normalization.html LibWeb: Implement CSS border radius overlapping algorithm 2025-08-21 11:52:38 +02:00
border-radius-shrink-zero-sized-box.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
border-radius-with-padding.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
box-with-transform-should-be-above-other-boxes.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
box-without-scrollable-overflow-should-not-consume-scroll-events.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
button-inside-scroll-container.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
calc-border-radius.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
change-opacity.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
clip-abspos-children.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
clip-border-radius-with-css-transform.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
clip-offscreen.html LibWeb/Painting: Apply clip and mask operations that are off-screen 2024-11-13 16:10:15 +01:00
clip-path-scrolling.html LibWeb: Fix CSS clip-path ignoring scroll position 2025-01-13 20:03:28 -07:00
clip-path.html LibWeb: Don't early return when masking area of StackingContext is empty 2025-06-06 00:52:19 +02:00
clip.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
color-hsl.html LibWeb/Painting: Fix blending with viewport background 2025-04-01 13:38:00 +02:00
color-hwb.html LibWeb/Painting: Fix blending with viewport background 2025-04-01 13:38:00 +02:00
color-oklab.html LibWeb/Painting: Fix blending with viewport background 2025-04-01 13:38:00 +02:00
color-oklch.html LibWeb/Painting: Fix blending with viewport background 2025-04-01 13:38:00 +02:00
color-rgb.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
corner-clip-inside-scrollable.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-any-link-selector.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
css-attr-basic.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-attr-fallback.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-attr-typed-fallback.html LibWeb: Remove now-invalid attr() type support 2025-07-09 16:44:20 +01:00
css-attr-typed.html LibWeb: Remove now-invalid attr() type support 2025-07-09 16:44:20 +01:00
css-case-insensitive-html-attributes-selector.html LibWeb/CSS: Use case insensitive tag and attribute name in ancestor hash 2025-05-21 08:54:40 -04:00
css-custom-prop-fallback.html LibWeb+Tests: Continue variable expansion if CSS-wide keyword is parsed 2025-05-19 16:32:07 +01:00
css-functional-unknown-webkit-pseudo-element.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-gradient-currentcolor.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
css-has-compound.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-has-descendant.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-has-direct-child.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-has-next-sibling.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-has-subsequent-sibling.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-invalid-var.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-isolation.html LibWeb: Implement CSS 'isolation' property 2025-01-13 11:07:55 +00:00
css-keyframe-fill-forwards.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-keyframe-invalid-transform-should-not-render.html Tests: Make test less flaky 2024-12-04 16:56:30 +00:00
css-lang-selector.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
css-local-link-selector.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
css-nested-declarations.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-nested-has.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-nesting.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-open-closed-selectors.html LibWeb: Remove :closed pseudo class 2024-12-06 04:49:36 +00:00
css-placeholder-shown-selector.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
css-pseudo-element-in-has.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-quotes.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
css-read-only-read-write-selectors.html LibWeb/Tests: Add empty text chunk in empty editables 2025-09-24 12:33:17 +01:00
css-tag-selector-case-sensitivity-html.html LibWeb/CSS: Use case insensitive tag and attribute name in ancestor hash 2025-05-21 08:54:40 -04:00
css-tag-selector-case-sensitivity-svg.html LibWeb: Fix CSS tag seletor case sensitivity for SVG elements 2025-01-13 12:11:34 +00:00
css-tag-selector-case-sensitivity-xhtml.xhtml LibWeb: Fix CSS tag seletor case sensitivity for SVG elements 2025-01-13 12:11:34 +00:00
css-unknown-webkit-pseudo-element.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
disabled-button-border-color.html LibWeb: Avoid changing button border color on disable/hover 2025-04-30 20:13:14 +01:00
empty-radial-gradient-crash.html LibWeb: Do not crash when Radial Gradient height is 0 2024-11-19 22:31:51 +01:00
first-available-font-should-include-whitespace.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
flood-color.html LibWeb: Use correct colors for SVGFEFloodElement::flood_color 2025-08-04 11:29:05 +01:00
grid-item-and-css-filter.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
grid-items-painting-order.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
iframe-contains-scrollable-box.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
img-srcset-font-relative-sizes.html LibWeb: Simplify SourceSet::normalize_source_densities 2025-09-04 10:05:44 +01:00
img-srcset-viewport-relative-sizes.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
inline-block-with-css-background.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
inline-nested-node.html LibWeb: Improve painting of nested inline elements 2024-12-04 11:23:54 +00:00
inline-paintable-background-clip-text.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
inline-paintable-inside-translated-container.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
inline-stacking-context.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
inline-visibility-hidden.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
input-background.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
invalidate-css-transform-property.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
item-with-negative-z-index.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
li-change-value-attribute.html Libweb: Invalidate layout for the value-attribute of li-elements 2025-05-11 01:14:31 +02:00
mask-image-with-scroll-offset.html Tests: Fix flaky test 2025-05-30 00:12:27 -04:00
mismatch-test.html WebContent+headless-browser: Implement mismatch conditions for ref tests 2024-12-04 19:50:00 +00:00
nested-svg-as-img.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
non-positioned-stacking-context-with-z-index-0.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
object-fit-scale-down.html LibWeb: Add support for object-fit: scale-down 2024-12-16 20:47:32 +01:00
object-fit-with-zoom-0.5.html Tests: Add tests that verify object-fit and -position with zoom 2025-01-21 16:05:12 +01:00
object-fit-with-zoom-2.0.html Tests: Add tests that verify object-fit and -position with zoom 2025-01-21 16:05:12 +01:00
object-fit-with-zoom-4.0.html Tests: Add tests that verify object-fit and -position with zoom 2025-01-21 16:05:12 +01:00
ol-change-reversed-attribute.html LibWeb: Invalidate layout for ol-attributes that affect it 2025-05-11 01:14:31 +02:00
ol-change-start-attribute.html LibWeb: Invalidate layout for ol-attributes that affect it 2025-05-11 01:14:31 +02:00
ol-change-type-attribute.html LibWeb: Invalidate layout for ol-attributes that affect it 2025-05-11 01:14:31 +02:00
ol-items-text.html LibWeb: Improve list item marker positioning and alpha/roman text 2025-07-15 19:05:36 +01:00
ol-render-default.html LibWeb: Tests for rendering lists and their ordinals 2025-06-16 12:44:58 +01:00
ol-render-multiple-changes.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-nested.html LibWeb: Tests for rendering lists and their ordinals 2025-06-16 12:44:58 +01:00
ol-render-node-append-group.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-append.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-insert-before-child-group.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-insert-before-child.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-insert-existing-child-group.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-insert-existing-child.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-insert-first-group.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-insert-first.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-insert-last-group.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-insert-last.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-insert-no-child-group.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-insert-no-child.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-prepend.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-remove-child-group.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-remove-child.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-remove-first.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
ol-render-node-remove.html LibWeb: Tests for recalculating ordinals after list manipulation 2025-06-16 12:44:58 +01:00
options-set-index.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
outlines.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
overflow-hidden-2.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
overflow-hidden-3.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
overflow-hidden-4.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
overflow-hidden-5.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
overflow-hidden-6.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
overflow-hidden-7.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
overflow-hidden-8.html LibWeb: Check if transform is identity instead of has_css_transform() 2025-09-23 23:35:19 +02:00
overflow-hidden-text-inside-translated-container.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
overflow-hidden.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
paintable-visibility-after-opacity-change-from-zero.html Everywhere: Fix even more typos 2025-08-27 08:48:01 +02:00
paintablewithlines-corner-clip-in-scroll-container.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
position-absolute-and-fixed-nested-static-position.html LibWeb: Correctly calculate nested positioned elements' static position 2025-10-14 10:23:27 +02:00
position-absolute-nested-static-position.html LibWeb: Correctly calculate nested positioned elements' static position 2025-10-14 10:23:27 +02:00
position-fixed-and-absolute-nested-static-position.html LibWeb: Correctly calculate nested positioned elements' static position 2025-10-14 10:23:27 +02:00
position-fixed-nested-static-position.html LibWeb: Correctly calculate nested positioned elements' static position 2025-10-14 10:23:27 +02:00
position-sticky-bottom.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
position-sticky-left.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
position-sticky-right.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
position-sticky-should-stay-within-containing-block.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
position-sticky-top.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
positioned-elements-in-scroll-container.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
range-not-assiciated-with-selection-should-not-affect-it.html LibWeb: Skip update_associated_selection() when there's no selection 2025-07-03 22:16:39 +02:00
render-order-floating-replaced.html LibWeb: Draw floating replaced elements more correctly 2025-03-03 21:49:44 +01:00
required-optional-pseudoclass.html LibWeb: Implement :required/:optional pseudo-classes 2025-05-24 10:31:34 +01:00
resolve-paint-only-properties-after-layout.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
scroll-iframe.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
scroll-using-mousewheel-event.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
scrollable-box-with-nested-stacking-context.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
scrollable-contains-box-with-gradient-background.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
scrollable-contains-boxes-with-hidden-overflow-1.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
scrollable-contains-boxes-with-hidden-overflow-2.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
scrollable-contains-boxes-with-hidden-overflow-and-opacity.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
scrollable-contains-iframe.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
scrollable-contains-rotated-boxes.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
scrollable-contains-table.html LibGfx+LibWeb: Draw glyph runs with subpixel accuracy 2024-12-21 23:09:52 +01:00
scrollable-content-inside-fixed-position-box.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
scrollable-overflow-viewport-bug.html LibWeb: Remove non-spec condition in scrollable overflow calculation 2024-12-04 17:14:10 +00:00
scrolled-svg-path-with-transform.html Tests: Hide scrollbars in failing ref test 2025-03-28 22:01:51 +00:00
scrolled-text-with-clipped-corners.html LibWeb: Deduplicate clipping code 2025-05-13 15:30:14 +03:00
select-chevron-color.html LibWeb: Make SelectElement arrow use text color 2025-02-20 14:06:23 -05:00
select-option-use-label.html LibWeb: Make select element use option's label, not text content 2025-01-04 11:44:03 +00:00
separate-borders-inline-table.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
simple-svg-mask.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
space-glyph-width.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
square-flex.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
sticky-box-with-percentage-insets.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
sticky-positioned-box-with-border.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
stop-color-non-trivial.html Everywhere: Fix even more typos 2025-08-27 08:48:01 +02:00
svg-alpha-mask-attribute.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
svg-alpha-mask.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
svg-display-attr.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
svg-file-matches-html-file.svg Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
svg-image-in-iframe.html LibWeb: Resolve SVGImageElement source URL correctly 2025-01-19 15:02:38 +01:00
svg-image-positioning.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
svg-inside-scroll-container.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
svg-invalid-number-arguments.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
svg-mask-in-defs.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
svg-mask-maskUnits-userSpaceOnUse.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
svg-non-local-clip-path-display-none.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
svg-overflow-hidden.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
svg-overflow-visible.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
svg-path-incomplete-args.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
svg-polygon-with-incomplete-points.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
svg-restore-after-filter.html LibWeb: Unapply CSS filters after applying them to SVG 2024-11-23 21:39:50 +00:00
svg-symbol.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
svg-text-crash.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
svg-use-defined-later.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
svg-with-css-transform.html LibWeb: Make SVGs respect their CSS transforms 2024-11-24 14:30:32 +01:00
table-collapse-ignored-in-cells.html LibWeb: Use the correct definition of separated-borders mode 2025-06-04 15:02:42 +01:00
tables-with-z-index.html LibWeb: Move z-index to table wrapper box 2025-02-16 21:05:59 +01:00
text-decoration-in-anonymous-wrapper.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
text-overflow-ellipsis-with-trailing-whitespace.html LibWeb: Handle text-overflow: ellipsis with trailing whitespace 2025-08-18 11:00:26 +01:00
text-overflow.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
textnode-segmenter-invalidation.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
transform-2d-translate.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
transform-and-opacity.html LibWeb: Call saveLayer() after applying matrix in PushStackingContext 2025-09-25 04:39:26 +02:00
transform-box.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
transform-calc-length-percentage.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
unicode-range.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
webkit-box-shadow.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
webkit-text-fill-color.html Meta: Add DOCTYPEs to ref tests 2025-03-20 11:50:49 +01:00
z-index-should-not-affect-svg-painting-order.html Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others 2024-11-05 14:02:07 +00:00
zero-area-child-creating-scrollable-overflow.html LibWeb: Stop zero-area children from causing scrollable overflow 2024-11-24 11:10:47 +01:00