servo/tests/wpt/meta/css/css-overflow
Mukilan Thiyagarajan 8a20e42de4
Add support for static SVG images using resvg crate (#36721)
This change adds support for rendering static SVG images using the
`resvg` crate, allowing svg sources in the `img` tag and in CSS
`background` and `content` properties. There are some limitations in
using resvg:

1. There is no support for animations or interactivity as these would
require implementing the full DOM layer of SVG specification.
2. Only system fonts can be used for text rendering. There is some
mechanism to provide a custom font resolver to usvg, but that is not
explored in this change.
3. resvg's handling of certain edge cases involving lack of explicit
`width` and `height` on the root svg element deviates from what the
specification expects from browsers. For example, resvg uses the values
in `viewBox` to derive the missing width or height dimension, but
without scaling that dimension to preserve the aspect ratio. It also
doesn't allow overriding this behavior.

Demo screenshot:
![servo - resvg
img](https://github.com/user-attachments/assets/8ecb2de2-ab7c-48e2-9f08-2d09d2cb8791)

<details>
<summary>Source</summary>

```
<style>
 #svg1 {
   border: 1px solid red;
 }

 #svg2 {
   border: 1px solid red;
   width: 300px;
 }
 #svg3 {
   border: 1px solid red;
   width: 300px;
   height: 200px;
   object-fit: contain;
 }
 #svg4 {
   border: 1px solid red;
   width: 300px;
   height: 200px;
   object-fit: cover;
 }
 #svg5 {
   border: 1px solid red;
   width: 300px;
   height: 200px;
   object-fit: fill;
 }
 #svg6 {
   border: 1px solid red;
   width: 300px;
   height: 200px;
   object-fit: none;
 }
</style>
</head>
<body>
        <div>
          <img id="svg1" src="https://raw.githubusercontent.com/servo/servo/refs/heads/main/resources/servo.svg" alt="Servo logo">
        </div>
        <div>
          <img id="svg2" src="https://raw.githubusercontent.com/servo/servo/refs/heads/main/resources/servo.svg" alt="Servo logo">
          <img id="svg3" src="https://raw.githubusercontent.com/servo/servo/refs/heads/main/resources/servo.svg" alt="Servo logo">
          <img id="svg4" src="https://raw.githubusercontent.com/servo/servo/refs/heads/main/resources/servo.svg" alt="Servo logo">
        </div>
        <div>
          <img id="svg5" src="https://raw.githubusercontent.com/servo/servo/refs/heads/main/resources/servo.svg" alt="Servo logo">
          <img id="svg6" src="https://raw.githubusercontent.com/servo/servo/refs/heads/main/resources/servo.svg" alt="Servo logo">
        </div>
</body>
```

</details>

---------

Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
2025-05-27 11:02:40 +00:00
..
line-clamp Sync WPT with upstream (04-05-2025) (#36829) 2025-05-04 01:43:02 +00:00
parsing Implement overflow:clip (#35103) 2025-02-12 07:02:06 +00:00
column-creates-computed-style.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-001.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-004.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-006.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-007.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-008.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-011.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-012.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-013.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-014.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-counters.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-dynamic-style-update.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-scroll-marker-reattach-target-current.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-style-change-triggers-relayout.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
column-updates-computed-style.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
display-flex-svg-overflow-default.html.ini
incremental-scroll-002.html.ini Update web-platform-tests to revision b'c72ee0c082d350b8b44f7a6bac1f028752b13527' (#34837) 2025-01-05 01:59:46 +00:00
inheritance.html.ini
input-scrollable-region-001.html.ini layout: Add very basic support for showing text in input boxes (#32365) 2024-06-20 10:13:50 +00:00
logical-overflow-001.html.ini
orthogonal-flow-with-inline-end-margin.html.ini
overflow-body-propagation-007.html.ini
overflow-body-propagation-008.html.ini
overflow-body-propagation-009.html.ini
overflow-canvas.html.ini
overflow-clip-margin-004.html.ini
overflow-clip-margin-010.html.ini
overflow-clip-margin-intersection-observer.html.ini dom: Implement minimal IntersectionObserver workflow (#35551) 2025-03-18 11:09:44 +00:00
overflow-clip-margin-mul-column-border-box.html.ini Implement overflow:clip (#35103) 2025-02-12 07:02:06 +00:00
overflow-clip-margin-mul-column-content-box.html.ini Implement overflow:clip (#35103) 2025-02-12 07:02:06 +00:00
overflow-clip-margin-svg.html.ini
overflow-clip-margin-visual-box-and-value-with-border-radius.html.ini
overflow-clip-margin-visual-box-and-value.html.ini
overflow-clip-margin-visual-box.html.ini
overflow-clip-scroll-size.html.ini
overflow-clip-x-visible-y-svg.html.ini
overflow-clip-y-visible-x-svg.html.ini
overflow-img-border-radius.html.ini
overflow-img-object-position.html.ini
overflow-img-scroll-non-replaced.html.ini
overflow-img-svg.html.ini Add support for static SVG images using resvg crate (#36721) 2025-05-27 11:02:40 +00:00
overflow-img.html.ini
overflow-no-interpolation.html.ini Implement overflow:clip (#35103) 2025-02-12 07:02:06 +00:00
overflow-padding.html.ini
overflow-shorthand-002.html.ini Implement overflow:clip (#35103) 2025-02-12 07:02:06 +00:00
overflow-video.html.ini Sync WPT with upstream (18-05-2025) (#37040) 2025-05-18 01:43:27 +00:00
paint-containment-svg.html.ini
root-scroll-button.html.ini Sync WPT with upstream (06-04-2025) (#36369) 2025-04-06 04:11:16 +00:00
root-scroll-marker.html.ini Update web-platform-tests to revision b'9d20f3ae600d00673a27a69f69e13d4cd8eca443' (#36195) 2025-03-28 06:07:42 +00:00
rounded-overflow-clip-visible.html.ini
rounded-overflow-visible-clip.html.ini
scroll-buttons-001.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-buttons-002.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-buttons-003.html.ini Update web-platform-tests to revision b'e5e7dab5e72edd352b17105acce2b8f443face10' (#35174) 2025-01-26 13:36:52 +00:00
scroll-buttons-004.html.ini Update web-platform-tests to revision b'e5e7dab5e72edd352b17105acce2b8f443face10' (#35174) 2025-01-26 13:36:52 +00:00
scroll-buttons-appearance.html.ini Update web-platform-tests to revision b'fc557e215e11221c91de4f283539725ef2f35928' (#35741) 2025-03-02 12:18:38 +00:00
scroll-buttons-disabled-rtl.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-buttons-disabled-snapping.html.ini Update web-platform-tests to revision b'e5e7dab5e72edd352b17105acce2b8f443face10' (#35174) 2025-01-26 13:36:52 +00:00
scroll-buttons-disabled-vertical-ltr.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-buttons-disabled.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-buttons-enabled-rtl.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-buttons-enabled-vertical-ltr.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-buttons-enabled.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-buttons-layout-parent.html.ini Update web-platform-tests to revision b'f630424a79c1ae17deaaf27a21efdbca1378af0e' (#35258) 2025-02-02 01:40:50 +00:00
scroll-marker-001.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-002.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-003.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-004.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-005.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-006.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-007.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-008.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-009.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-010.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-011.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-012.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-15.html.ini Update web-platform-tests to revision b'9d20f3ae600d00673a27a69f69e13d4cd8eca443' (#36195) 2025-03-28 06:07:42 +00:00
scroll-marker-contain-001.tentative.html.ini Update web-platform-tests to revision b'9d20f3ae600d00673a27a69f69e13d4cd8eca443' (#36195) 2025-03-28 06:07:42 +00:00
scroll-marker-contain-002.tentative.html.ini Update web-platform-tests to revision b'9d20f3ae600d00673a27a69f69e13d4cd8eca443' (#36195) 2025-03-28 06:07:42 +00:00
scroll-marker-contain-003.tentative.html.ini Update web-platform-tests to revision b'9d20f3ae600d00673a27a69f69e13d4cd8eca443' (#36195) 2025-03-28 06:07:42 +00:00
scroll-marker-contain-004.tentative.html.ini Update web-platform-tests to revision b'9d20f3ae600d00673a27a69f69e13d4cd8eca443' (#36195) 2025-03-28 06:07:42 +00:00
scroll-marker-contain-005.tentative.html.ini Update web-platform-tests to revision b'9d20f3ae600d00673a27a69f69e13d4cd8eca443' (#36195) 2025-03-28 06:07:42 +00:00
scroll-marker-contain-006.tentative.html.ini Update web-platform-tests to revision b'9d20f3ae600d00673a27a69f69e13d4cd8eca443' (#36195) 2025-03-28 06:07:42 +00:00
scroll-marker-contain-007.tentative.html.ini Update web-platform-tests to revision b'9d20f3ae600d00673a27a69f69e13d4cd8eca443' (#36195) 2025-03-28 06:07:42 +00:00
scroll-marker-contain-009.tentative.html.ini Sync WPT with upstream (13-04-2025) (#36488) 2025-04-13 02:52:15 +00:00
scroll-marker-contain-010.tentative.html.ini Sync WPT with upstream (13-04-2025) (#36488) 2025-04-13 02:52:15 +00:00
scroll-marker-contain-011.tentative.html.ini Sync WPT with upstream (13-04-2025) (#36488) 2025-04-13 02:52:15 +00:00
scroll-marker-controls-scroll-tracking-001.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-controls-scroll-tracking-002.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-controls-scroll-tracking-003.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-counters.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-dynamic.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-001.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-002.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-003.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-005.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-007.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-008.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-009.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-011.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-013.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-015.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-016.html.ini Update web-platform-tests to revision b'f630424a79c1ae17deaaf27a21efdbca1378af0e' (#35258) 2025-02-02 01:40:50 +00:00
scroll-marker-group-017.html.ini Update web-platform-tests to revision b'f630424a79c1ae17deaaf27a21efdbca1378af0e' (#35258) 2025-02-02 01:40:50 +00:00
scroll-marker-group-018.html.ini Update web-platform-tests to revision b'de61904887c13679551c32e5e3e70b4dc870c98a' (#35480) 2025-02-16 01:35:48 +00:00
scroll-marker-group-019.html.ini Update web-platform-tests to revision b'de61904887c13679551c32e5e3e70b4dc870c98a' (#35480) 2025-02-16 01:35:48 +00:00
scroll-marker-group-020.html.ini Update web-platform-tests to revision b'de61904887c13679551c32e5e3e70b4dc870c98a' (#35480) 2025-02-16 01:35:48 +00:00
scroll-marker-group-add-dynamic-001.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-add-dynamic-002.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-add-dynamic-003.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-add-dynamic-004.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
scroll-marker-group-keeps-active-in-view.html.ini Update web-platform-tests to revision b'f630424a79c1ae17deaaf27a21efdbca1378af0e' (#35258) 2025-02-02 01:40:50 +00:00
scroll-marker-group-layout-parent.html.ini Update web-platform-tests to revision b'f630424a79c1ae17deaaf27a21efdbca1378af0e' (#35258) 2025-02-02 01:40:50 +00:00
scroll-marker-group-snap-aligns-to-active.tentative.html.ini Update web-platform-tests to revision b'fc557e215e11221c91de4f283539725ef2f35928' (#35741) 2025-03-02 12:18:38 +00:00
scroll-marker-selection-in-2d.html.ini Update web-platform-tests to revision b'fc557e215e11221c91de4f283539725ef2f35928' (#35741) 2025-03-02 12:18:38 +00:00
scroll-marker-selection-picks-closest.html.ini Update web-platform-tests to revision b'f630424a79c1ae17deaaf27a21efdbca1378af0e' (#35258) 2025-02-02 01:40:50 +00:00
scroll-markers-updated-by-programmatic-scroll.html.ini Update web-platform-tests to revision b'f630424a79c1ae17deaaf27a21efdbca1378af0e' (#35258) 2025-02-02 01:40:50 +00:00
scroll-overflow-padding-block-001.html.ini layout: Account for transform in scrollable overflow (#36138) 2025-04-29 09:37:27 +00:00
scrollable-overflow-float.html.ini
scrollable-overflow-height-with-flex-item-margin-inline-end-rtl.html.ini Update web-platform-tests to revision b'fc557e215e11221c91de4f283539725ef2f35928' (#35741) 2025-03-02 12:18:38 +00:00
scrollable-overflow-input-001.html.ini layout: Add very basic support for showing text in input boxes (#32365) 2024-06-20 10:13:50 +00:00
scrollable-overflow-input-002.html.ini layout: Add very basic support for showing text in input boxes (#32365) 2024-06-20 10:13:50 +00:00
scrollable-overflow-padding-inline.html.ini Update web-platform-tests to revision b'7b6f075f0ec3c52d92c61fb9f35ce0ec927b17b2' (#34525) 2024-12-08 10:45:12 +00:00
scrollable-overflow-padding-input.html.ini Update web-platform-tests to revision b'bf49dde84c5f05613115d6146d109f0ec3900694' (#34483) 2024-12-05 05:23:07 +00:00
scrollable-overflow-padding.html.ini
scrollable-overflow-self-collapsing.html.ini
scrollable-overflow-textarea.html.ini
scrollable-overflow-transform-005.tentative.html.ini layout: Account for transform in scrollable overflow (#36138) 2025-04-29 09:37:27 +00:00
scrollable-overflow-transform-009.html.ini layout: Account for transform in scrollable overflow (#36138) 2025-04-29 09:37:27 +00:00
scrollable-overflow-transform-010.tentative.html.ini layout: Account for transform in scrollable overflow (#36138) 2025-04-29 09:37:27 +00:00
scrollable-overflow-transform-unreachable-region.html.ini layout: Account for transform in scrollable overflow (#36138) 2025-04-29 09:37:27 +00:00
scrollable-overflow-zero-one-axis.html.ini
scrollbar-gutter-001.html.ini
scrollbar-gutter-dynamic-001.html.ini
scrollbar-gutter-dynamic-004.html.ini
scrollbar-gutter-propagation-001.html.ini
scrollbar-gutter-propagation-002.html.ini
scrollbar-gutter-propagation-003.html.ini
scrollbar-gutter-propagation-007.html.ini
scrollbar-gutter-root-both-edges.html.ini Update web-platform-tests to revision b'c72ee0c082d350b8b44f7a6bac1f028752b13527' (#34837) 2025-01-05 01:59:46 +00:00
scrollbar-gutter-rtl-001.html.ini
scrollbar-gutter-scroll-into-view.html.ini Update web-platform-tests to revision b'4c3d068f942231dc905ea283e4f82bd70801c37c' (#33461) 2024-09-15 01:26:41 +00:00
scrollbar-gutter-vertical-lr-001.html.ini
scrollbar-gutter-vertical-rl-001.html.ini
targeted-column-scroll-marker-selection-001.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
targeted-column-scroll-marker-selection-002.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
targeted-column-scroll-marker-selection-003.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
targeted-column-scroll-marker-selection-004.html.ini Update web-platform-tests to revision b'979291d49c1a8e3d811df117d9e6b5d399a6deb2' (#34733) 2024-12-22 01:37:35 +00:00
targeted-scroll-marker-selection-with-transition.tentative.html.ini Enable layout_grid_enabled pref for all tests (#36316) 2025-04-03 18:48:05 +00:00
text-overflow-ellipsis-001.html.ini
text-overflow-ellipsis-002.html.ini
text-overflow-ellipsis-editing-input.html.ini feat: Implement display for text selection and caret (#35830) 2025-04-10 14:40:38 +00:00
text-overflow-ellipsis-rtl-001.html.ini
text-overflow-ellipsis-vertical-001.html.ini
text-overflow-ellipsis-vertical-rtl-001.html.ini
text-overflow-scroll-001.html.ini
text-overflow-scroll-rtl-001.html.ini
text-overflow-scroll-vertical-lr-001.html.ini
text-overflow-scroll-vertical-lr-rtl-001.html.ini
text-overflow-scroll-vertical-rl-001.html.ini
text-overflow-scroll-vertical-rl-rtl-001.html.ini