## Highlight pseudos

There are many subtle browser differences in rendering these pseudo-elements,
most of which comply with the specs, so here are some hints.

Use the helpers in `support/highlights.css` and `support/selections.js` where
possible. They include rules and functions for “basic” but tricky tasks like
setting up a test area, selecting content, and triggering spellcheck.

When creating complex layered references, start by wrapping your text in a
relative container, then prepend absolute layers with copies of that text, then
mark up those copies with spans. Make everything transparent initially, and set
visible styles on the spans only. The absolute layers will perfectly overlap
your original text, which you can keep for external layout. For example:

```html
<div class="container">
    <div class="spelling-error"><span>Teh</span> <span>dgo</span> and
        <span>teh</span> <span>sphixn</span>.</div>
    <div class="selection">Teh d<span>go and te</span>h sphixn.</div>
    Teh dgo and teh sphixn.
</div>
```
```css
.container { position: relative; color: transparent; }
.container > * { position: absolute; }
.spelling-error > span { background: ...; color: ...; }
.selection > span { background: ...; text-shadow: ...; }
```

Simplify this pattern at your own peril! For example, if you set backgrounds
directly on layers as your highlight backgrounds, they will always be exactly
`line-height` tall, but even if your `line-height` is 1, the actual line boxes
and so on can still be taller (unless they contain Ahem text only).


## Selection regression tests

Four tests are based on the properties described in <https://crrev.com/915543>,
and were designed to catch regressions as bugs were fixed in Chromium:

*   selection-originating-underline-order.html (P1)
*   selection-originating-decoration-color.html (P3)
*   selection-originating-strikethrough-order.html (P4)
*   selection-background-painting-order.html (P5)

Ideally we would want a test for property P2, that line-through decorations are
always painted over text when selecting some of that text. But unfortunately,
originating decoration recoloring (when correctly implemented) essentially makes
it impossible to tell whether the text or the decoration was painted on top.

Some ways this test could become possible:

*   Wider impl support for ::target-text or ::highlight decorations.
    Decorations introduced by highlight pseudos aren’t recolored, so
    we could move the originating text-decoration to any highlight
    that paints under ::selection (currently all of them), choose
    another ::selection color, and check which is painted on top.

*   SVG adds support for text-decoration-color, or HTML adds support
    for stroke and stroke-width via CSS, as long as we continue to
    recolor originating decorations to color only. Then we could
    stroke in another color, and check which is painted on top.

*   css-pseudo adds some kind of support for suppressing or otherwise
    tweaking the recoloring of originating decorations.

*   Some other standard means for text to contain colors other than
    the color property, such as color fonts.
Icon  Name                                                  Last modified      Size  Description
[PARENTDIR] Parent Directory - [DIR] crashtests/ 2025-03-01 06:02 - [DIR] highlight-cascade/ 2025-02-03 06:01 - [DIR] parsing/ 2024-12-12 06:02 - [DIR] reference/ 2024-04-26 06:02 - [DIR] slider/ 2023-10-31 06:01 - [DIR] support/ 2024-07-12 06:02 - [   ] META.yml 2022-11-12 16:48 87 [   ] WEB_FEATURES.yml 2024-11-11 06:02 280 [TXT] active-selection-001-manual.html 2022-11-12 16:48 1.1K CSS Pseudo-Elements Test: active selection and color (basic) [TXT] active-selection-002-manual.html 2022-11-12 16:50 1.5K CSS Pseudo-Elements Test: active selection and background-color (basic) [TXT] active-selection-004-manual.html 2022-11-12 16:48 1.2K CSS Pseudo-Elements Test: active selection and text-decoration (basic) [TXT] active-selection-011.html 2022-11-12 16:47 1.2K CSS Pseudo-Elements Test: active selection and color (basic) [TXT] active-selection-012.html 2022-11-12 16:47 1.5K CSS Pseudo-Elements Test: active selection and background-color (basic) [TXT] active-selection-014.html 2022-11-12 16:47 2.1K CSS Pseudo-Elements Test: active selection and text-decoration [TXT] active-selection-016.html 2022-11-12 16:47 1.3K CSS Pseudo-Elements Test: active selection of partial text and color [TXT] active-selection-018.html 2022-11-12 16:48 1.6K CSS Pseudo-Elements Test: active selection, color and background-color [TXT] active-selection-021.html 2022-11-12 16:48 1.7K CSS Pseudo-Elements Test: active selection, color and 'text-decoration: underline overline line-through' [TXT] active-selection-025.html 2022-11-12 16:48 1.9K CSS Pseudo-Elements Test: active selection and first-letter pseudo-element [TXT] active-selection-027.html 2022-11-12 16:48 2.0K CSS Pseudo-Elements Test: active selection and first-line pseudo-element [TXT] active-selection-031.html 2024-01-22 06:01 2.0K CSS Pseudo-Elements Test: active selection and vertical writing-modes [TXT] active-selection-041.html 2022-11-12 16:48 2.6K CSS Pseudo-Elements Test: active selection and image [TXT] active-selection-043.html 2022-11-12 16:50 2.2K CSS Pseudo-Elements Test: active selection and image (complex) [TXT] active-selection-045.html 2022-11-12 16:48 1.6K CSS Pseudo-Elements Test: active selection and image [TXT] active-selection-051-ref.html 2022-11-12 16:47 786 CSS Reftest Reference [TXT] active-selection-051.html 2022-11-12 16:47 1.3K CSS Pseudo-Elements Test: active selection and invalid declaration block [TXT] active-selection-052.html 2022-11-12 16:47 1.3K CSS Pseudo-Elements Test: active selection and empty declaration block [TXT] active-selection-053.html 2022-11-12 16:47 1.4K CSS Pseudo-Elements Test: active selection and invalid color value [TXT] active-selection-054.html 2022-11-12 16:48 1.4K CSS Pseudo-Elements Test: active selection and invalid background-color value [TXT] active-selection-056.html 2022-11-12 16:48 1.5K CSS Pseudo-Elements Test: active selection and 3 consecutive <br> elements [TXT] active-selection-057.html 2022-11-12 16:48 2.2K CSS Pseudo-Elements Test: active selection and 3 empty elements [TXT] active-selection-063.html 2022-11-12 16:48 1.8K CSS Pseudo-Elements Test: active selection and consecutive preserved &Tab; [TXT] backdrop-animate-002-ref.html 2022-11-12 16:48 255 [TXT] backdrop-animate-002.html 2023-02-02 06:01 671 CSS Test: A Web Animations on ::backdrop [TXT] backdrop-animate.html 2022-11-12 16:50 1.1K CSS Pseudo-Elements Test: ::backdrop & web animations [TXT] before-after-dynamic-custom-property-001-ref.html 2022-11-12 16:48 238 CSS Test reference [TXT] before-after-dynamic-custom-property-001.html 2022-11-12 16:47 892 CSS Test: Dynamic ::before and ::after generation by a custom property reference [TXT] before-dynamic-display-none.html 2022-11-12 16:47 576 CSS Test: ::before box removed when display set to 'none'. [TXT] before-in-display-none-thcrash.html 2022-11-12 16:47 678 CSS Test: Invalidating style inside display:none with ::before should not crash. [TXT] before-preceding-whitespace-dynamic.html 2024-10-13 06:01 568 Removing an empty inline should not cause a space after ::before content to collapse [TXT] chrome-bug-1299142-crash.html 2022-11-12 16:48 532 [TXT] chrome-first-letter-container-query-crash.html 2024-02-20 06:01 653 Chrome crash issue 41492455 [TXT] chrome-first-letter-inside-replaced-crash.html 2022-11-12 16:50 475 Chrome issue 1370386 [TXT] file-selector-button-001-notref.html 2022-11-12 16:47 70 CSS Test Reference [TXT] file-selector-button-001.html 2022-11-12 16:47 365 ::file-selector-button allows to customize the button in <input type=file> [TXT] file-selector-button-after-part.html 2022-11-12 16:47 598 ::file-selector-button allows to customize the button in <input type=file> [TXT] file-selector-button-display-none-overflow-crash.html 2022-11-12 16:48 292 [TXT] file-selector-button-display-toggle-crash.html 2022-11-12 16:48 507 Shouldn't assert when re-creating a ::file-selector-button pseudo-element after it being display: none [TXT] file-selector-button-float.html 2023-06-14 06:01 559 float shouldn't make file control button disappear [TXT] file-selector-button-inherit.html 2022-11-12 16:48 857 CSS Pseudo Test: ::file-selector-button inherits from its originating element [TXT] firefox-bug-1907238-crash.html 2024-07-23 06:01 371 [TXT] first-letter-001-ref.html 2022-11-12 16:48 516 CSS Reference File [TXT] first-letter-001.html 2022-11-12 16:48 868 CSS Test: ::first-letter formatting [TXT] first-letter-002.html 2022-11-12 16:48 940 CSS Test: ::first-letter formatting [TXT] first-letter-003.html 2022-11-12 16:50 940 CSS Test: ::first-letter formatting [TXT] first-letter-004-ref.html 2022-11-12 16:48 329 CSS Reference [TXT] first-letter-004.html 2022-11-12 16:47 786 CSS Test: ::first-letter formatting [TXT] first-letter-005-ref.html 2022-11-12 16:47 531 CSS Reference: ::first-letter formatting [TXT] first-letter-005.html 2022-11-12 16:47 821 CSS Test: ::first-letter formatting [TXT] first-letter-allowed-properties.html 2022-11-12 16:47 2.8K CSS Test: Properties allowed on ::first-letter pseudo elements [TXT] first-letter-and-sibling-display-change.html 2022-11-12 16:48 657 CSS Test: Changing ::first-letter color while sibling changes display type. [TXT] first-letter-and-whitespace-ref.html 2022-11-12 16:48 364 CSS Reference File [TXT] first-letter-and-whitespace.html 2022-11-12 16:48 1.1K CSS Test: White-spaces around floated ::first-letter [TXT] first-letter-background-image-dynamic.html 2022-11-12 16:48 889 CSS Test: ::first-letter correctly applies background-image dynamically [TXT] first-letter-background-image-ref.html 2022-11-12 16:48 306 CSS Test Reference [TXT] first-letter-background-image.html 2022-11-12 16:48 722 CSS Test: ::first-letter correctly applies background-image [TXT] first-letter-bidi-pre-crash.html 2024-06-11 06:01 170 [TXT] first-letter-block-to-inline-ref.html 2022-11-12 16:50 76 [TXT] first-letter-block-to-inline.html 2022-11-12 16:48 607 CSS Test: ::first-letter stops applying to element becoming inline. [TXT] first-letter-crash.html 2022-11-12 16:47 374 [TXT] first-letter-digraph.html 2023-06-02 06:01 1.2K CSS Test: ::first-letter digraph recognition [TXT] first-letter-exclude-block-child-marker-ref.html 2022-11-12 16:47 1.0K Reference: A child's ::marker should be excluded when finding the ::first-letter content [TXT] first-letter-exclude-block-child-marker.html 2022-11-12 16:47 934 CSS Test: A child's ::marker should be excluded when finding the ::first-letter content [TXT] first-letter-exclude-inline-child-marker-ref.html 2022-11-12 16:48 1.2K Reference: A child's ::marker should be excluded when finding the ::first-letter content [TXT] first-letter-exclude-inline-child-marker.html 2022-11-12 16:48 1.2K CSS Test: A child's ::marker should be excluded when finding the ::first-letter content [TXT] first-letter-exclude-inline-marker-ref.html 2022-11-12 16:48 1.1K Reference: The element's own ::marker should be skipped when finding the ::first-letter content [TXT] first-letter-exclude-inline-marker.html 2022-11-12 16:48 1.0K CSS Test: The element's own ::marker should be skipped when finding the ::first-letter content [TXT] first-letter-hi-001-ref.html 2024-06-18 06:01 902 CSS-Pseudo reference - ::first-letter in Hindi [TXT] first-letter-hi-001.html 2022-11-12 16:48 1.3K CSS-Pseudo testcase - ::first-letter in Hindi [TXT] first-letter-hi-002-ref.html 2022-11-12 16:50 776 CSS-Pseudo reference - ::first-letter in Hindi [TXT] first-letter-hi-002.html 2022-11-12 16:48 1.2K CSS-Pseudo testcase - ::first-letter in Hindi [TXT] first-letter-list-item-dynamic-001-ref.html 2022-11-12 16:47 119 CSS Test Reference [TXT] first-letter-list-item-dynamic-001.html 2022-11-12 16:47 842 CSS Test: Move ::first-letter text node (required: list item, float, fixed, contenteditable). [TXT] first-letter-of-html-root-crash-ref.html 2022-11-12 16:47 85 CSS Test Reference [TXT] first-letter-of-html-root-refcrash.html 2022-11-12 16:47 624 CSS Test: ::first-letter of html root element crash in combination with removal of body [TXT] first-letter-opacity-001-not-ref.html 2022-11-12 16:48 246 Reference mismatch: ::first-letter supports opacity. [TXT] first-letter-opacity-001-ref.html 2022-11-12 16:48 367 Reference: ::first-letter supports opacity. [TXT] first-letter-opacity-001.html 2022-11-12 16:48 448 CSS Test: ::first-letter supports opacity. [TXT] first-letter-opacity-float-001-ref.html 2022-11-12 16:48 220 [TXT] first-letter-opacity-float-001.html 2022-11-12 16:48 893 CSS Test: floating ::first-letter with opacity [TXT] first-letter-punctuation-and-space-ref.html 2022-11-12 16:48 376 CSS Reference [TXT] first-letter-punctuation-and-space.html 2022-11-12 16:50 840 CSS Test: ::first-letter formatting [TXT] first-letter-punctuation-dynamic-ref.html 2022-11-12 16:48 154 CSS Test Reference [TXT] first-letter-punctuation-dynamic.html 2022-11-12 16:47 502 CSS Pseudo-Elements Test: ::first-letter modified text node with punctuation [TXT] first-letter-skip-empty-span-nested-ref.html 2022-11-12 16:47 324 Reference: The nested empty span should be skipped when finding the ::first-letter content [TXT] first-letter-skip-empty-span-nested.html 2022-11-12 16:47 484 CSS Test: The nested empty span should be skipped when finding the ::first-letter content [TXT] first-letter-skip-empty-span-ref.html 2022-11-12 16:47 317 Reference: The empty span should be skipped when finding the ::first-letter content [TXT] first-letter-skip-empty-span.html 2022-11-12 16:48 457 CSS Test: The empty span should be skipped when finding the ::first-letter content [TXT] first-letter-skip-marker-ref.html 2022-11-12 16:48 643 Reference: The element's own ::marker should be skipped when finding the ::first-letter content [TXT] first-letter-skip-marker.html 2022-11-12 16:48 747 CSS Test: The element's own ::marker should be skipped when finding the ::first-letter content [TXT] first-letter-text-and-display-change.html 2022-11-12 16:48 698 CSS Test: Change display for the ::first-letter container while replacing text node [TXT] first-letter-width-2-ref.html 2024-06-11 06:01 386 initial-letter width test [TXT] first-letter-width-2.html 2024-06-11 06:01 1.1K initial-letter width test [TXT] first-letter-width-ref.html 2022-11-12 16:48 345 initial-letter width test [TXT] first-letter-width.html 2022-11-12 16:48 914 initial-letter width test [TXT] first-letter-with-before-after-ref.html 2024-02-20 06:01 204 CSS Test Reference [TXT] first-letter-with-before-after.html 2024-02-20 06:01 461 CSS Pseudo Test: ::first-letter text from ::before and ::after [TXT] first-letter-with-preceding-new-line.html 2023-09-14 06:01 807 CSS Test: ::first-letter with preceding new line [TXT] first-letter-with-quote-ref.html 2022-11-12 16:50 244 Reference: The ::first-letter should work with quote element [TXT] first-letter-with-quote.html 2022-11-12 16:48 384 CSS Test: The ::first-letter should work with quote element [TXT] first-letter-with-span-ref.html 2022-11-12 16:47 240 Reference: The ::first-letter should work with quote text span element [TXT] first-letter-with-span.html 2022-11-12 16:47 391 CSS Test: The ::first-letter should work with quote text span element [TXT] first-line-allowed-properties.html 2022-11-12 16:47 2.8K CSS Test: Properties allowed on ::first-line pseudo elements [TXT] first-line-and-marker-ref.html 2022-11-12 16:47 654 CSS Reftest Reference [TXT] first-line-and-marker.html 2022-11-12 16:48 959 Interaction of ::first-line and ::marker [TXT] first-line-and-placeholder-ref.html 2022-11-12 16:48 158 [TXT] first-line-and-placeholder.html 2022-11-12 16:48 596 Interaction of ::first-line and ::placeholder [TXT] first-line-below-float.html 2024-10-19 06:02 855 [TXT] first-line-change-inline-color-nested-ref.html 2022-11-12 16:48 114 [TXT] first-line-change-inline-color-nested.html 2022-11-12 16:48 621 [TXT] first-line-change-inline-color-ref.html 2022-11-12 16:48 114 [TXT] first-line-change-inline-color.html 2022-11-12 16:50 601 [TXT] first-line-first-letter-insert-crash.html 2022-11-12 16:48 560 Should not crash when inserting an element inside a :first-line pseudo. [TXT] first-line-float-mapped-attribute-crash.html 2023-07-08 06:01 304 [TXT] first-line-green-ref.html 2022-11-12 16:47 108 CSS Test Reference [TXT] first-line-inherited-no-transition-ref.html 2023-03-30 06:01 139 CSS Test Reference [TXT] first-line-inherited-no-transition.html 2023-03-30 06:01 493 CSS Pseudo-Element Test: ::first-line style should not trigger transitions on elements [TXT] first-line-inherited-transition-crash.html 2023-03-07 06:01 295 CSS Pseudo-Element Test: Color transition from inherited ::first-line style should not crash [TXT] first-line-inherited-with-transition-ref.html 2023-03-30 06:01 218 CSS Test Reference [TXT] first-line-inherited-with-transition.html 2023-03-30 06:01 587 CSS Pseudo-Element Test: ::first-line style should not trigger transitions on elements [TXT] first-line-input-image-crash.html 2023-10-27 06:02 271 Don't crash when using ::first-line and <input type=image> [TXT] first-line-line-height-001-ref.html 2022-11-12 16:47 524 CSS-Pseudo reference [TXT] first-line-line-height-001.html 2022-11-12 16:47 857 CSS-Pseudo testcase: first-line [TXT] first-line-line-height-002-ref.html 2022-11-12 16:47 501 CSS-Pseudo reference [TXT] first-line-line-height-002.html 2022-11-12 16:48 839 CSS-Pseudo testcase: first-line [TXT] first-line-nested-gcs.html 2022-11-12 16:48 504 CSS Pseudo Test: Query ::first-line computed style before outer block ::first-line matches [TXT] first-line-on-ancestor-block-ref.html 2022-11-12 16:48 157 [TXT] first-line-on-ancestor-block.html 2022-11-12 16:48 424 [TXT] first-line-opacity-001-not-ref.html 2022-11-12 16:48 254 Reference mismatch: ::first-line supports opacity. [TXT] first-line-opacity-001-ref.html 2022-11-12 16:48 373 Reference: ::first-line supports opacity. [TXT] first-line-opacity-001.html 2022-11-12 16:50 450 CSS Test: ::first-line supports opacity. [TXT] first-line-replaced-001-ref.html 2022-11-12 16:48 141 [TXT] first-line-replaced-001.html 2022-11-12 16:47 394 [TXT] first-line-with-before-after-ref.html 2022-11-12 16:47 432 [TXT] first-line-with-before-after.html 2022-11-12 16:47 705 ::before and ::after styles should apply inside ::first-line [TXT] first-line-with-inline-block-before-ref.html 2022-11-12 16:47 106 [TXT] first-line-with-inline-block-before.html 2022-11-12 16:48 425 inline block ::before styles should apply inside ::first-line [TXT] first-line-with-inline-block.html 2022-11-12 16:48 389 [TXT] first-line-with-out-of-flow-and-nested-div.html 2022-11-12 16:48 741 CSS Test: ::first-line with out of flow and nested div [TXT] first-line-with-out-of-flow-and-nested-span.html 2022-11-12 16:48 746 CSS Test: ::first-line with out of flow and nested span [TXT] first-line-with-out-of-flow-ref.html 2022-11-12 16:48 157 [TXT] first-line-with-out-of-flow.html 2022-11-12 16:48 650 CSS Test: ::first-line with out of flow [TXT] get-computed-style-crash.html 2024-05-22 06:02 143 [TXT] grammar-error-001-ref.html 2022-11-12 16:50 704 CSS Reftest Reference [TXT] grammar-error-001.html 2022-11-12 16:48 967 CSS Pseudo-Elements Test: highlighting of grammar error (basic) [TXT] grammar-error-002-manual.html 2022-11-12 16:47 904 CSS Pseudo-Elements Test: highlighting of grammar error [TXT] grammar-error-003-manual.html 2022-11-12 16:47 922 CSS Pseudo-Elements Test: highlighting of grammar error [TXT] grammar-spelling-errors-001.html 2022-11-12 16:47 1.7K CSS Pseudo-Elements Test: ::spelling-error overlay drawn over the ::grammar-error overlay [TXT] grammar-spelling-errors-002.html 2022-11-12 16:47 1.7K CSS Pseudo-Elements Test: ::spelling-error overlay drawn over the ::grammar-error overlay [TXT] highlight-custom-properties-dynamic-001-ref.html 2024-04-26 06:02 409 CSS Pseudo Test: Dynamic Custom Properties for Highlights [TXT] highlight-custom-properties-dynamic-001.html 2024-04-26 06:02 963 CSS Pseudo Test: Dynamic Custom Properties for Highlights [TXT] highlight-painting-001-ref.html 2022-11-12 16:48 669 [TXT] highlight-painting-001.html 2025-02-12 06:02 1.2K CSS Pseudo-Elements Test: highlight painting [TXT] highlight-painting-002-ref.html 2025-02-12 06:02 756 [TXT] highlight-painting-002.html 2025-02-12 06:02 1.3K CSS Pseudo-Elements Test: highlight painting [TXT] highlight-painting-003-ref.html 2022-11-12 16:47 1.1K [TXT] highlight-painting-003.html 2023-11-23 06:01 2.1K CSS Pseudo-Elements Test: highlight painting [TXT] highlight-painting-004-ref1.html 2022-11-12 16:48 1.1K [TXT] highlight-painting-004-ref2.html 2022-11-12 16:48 1.6K [TXT] highlight-painting-004-ref3.html 2022-11-12 16:48 1.6K [TXT] highlight-painting-004.html 2023-11-23 06:01 2.1K CSS Pseudo-Elements Test: highlight painting [TXT] highlight-painting-005-crash.html 2023-04-16 06:01 665 CSS Pseudo-Elements Test: highlight painting with display:contents [TXT] highlight-painting-currentcolor-001-ref.html 2024-07-12 06:02 571 [TXT] highlight-painting-currentcolor-001.html 2024-07-12 06:02 1.2K CSS Pseudo-Elements Test: ‘currentColor’ in ‘color’ of overlapping highlights [TXT] highlight-painting-currentcolor-001a-ref.html 2024-07-12 06:02 571 [TXT] highlight-painting-currentcolor-001a.html 2024-07-12 06:02 1.3K CSS Pseudo-Elements Test: ‘currentColor’ in ‘color’ of overlapping highlights [TXT] highlight-painting-currentcolor-002-ref.html 2024-07-12 06:02 578 [TXT] highlight-painting-currentcolor-002.html 2024-07-12 06:02 1.2K CSS Pseudo-Elements Test: ‘currentColor’ in ‘color’ and ‘background-color’ of overlapping highlights [TXT] highlight-painting-currentcolor-002a-ref.html 2024-07-12 06:02 578 [TXT] highlight-painting-currentcolor-002a.html 2024-07-12 06:02 1.3K CSS Pseudo-Elements Test: ‘currentColor’ in ‘color’ and ‘background-color’ of overlapping highlights [TXT] highlight-painting-currentcolor-002b-ref.html 2024-07-12 06:02 571 [TXT] highlight-painting-currentcolor-002b.html 2024-07-12 06:02 1.2K CSS Pseudo-Elements Test: ‘currentColor’ in ‘background-color’ (but not ‘color’) of overlapping highlights [TXT] highlight-painting-currentcolor-003-ref.html 2024-07-12 06:02 622 [TXT] highlight-painting-currentcolor-003.html 2024-07-12 06:02 1.3K CSS Pseudo-Elements Test: ‘currentColor’ in ‘color’ and ‘text-decoration-color’ of overlapping highlights [TXT] highlight-painting-currentcolor-003a-ref.html 2024-07-12 06:02 622 [TXT] highlight-painting-currentcolor-003a.html 2024-07-12 06:02 1.4K CSS Pseudo-Elements Test: ‘currentColor’ in ‘color’ and ‘text-decoration-color’ of overlapping highlights [TXT] highlight-painting-currentcolor-003b-ref.html 2024-07-12 06:02 615 [TXT] highlight-painting-currentcolor-003b.html 2024-07-12 06:02 1.3K CSS Pseudo-Elements Test: ‘currentColor’ in ‘text-decoration-color’ (but not ‘color’) of overlapping highlights [TXT] highlight-painting-currentcolor-004-ref.html 2024-07-12 06:02 619 [TXT] highlight-painting-currentcolor-004.html 2024-07-12 06:02 1.2K CSS Pseudo-Elements Test: ‘currentColor’ in ‘color’ and ‘text-shadow’ of overlapping highlights [TXT] highlight-painting-currentcolor-004a-ref.html 2024-07-12 06:02 619 [TXT] highlight-painting-currentcolor-004a.html 2024-07-12 06:02 1.4K CSS Pseudo-Elements Test: ‘currentColor’ in ‘color’ and ‘text-shadow’ of overlapping highlights [TXT] highlight-painting-currentcolor-004b-ref.html 2024-07-12 06:02 612 [TXT] highlight-painting-currentcolor-004b.html 2024-07-12 06:02 1.3K CSS Pseudo-Elements Test: ‘currentColor’ in ‘text-shadow’ (but not ‘color’) of overlapping highlights [TXT] highlight-painting-currentcolor-005-ref.html 2022-11-12 16:48 446 CSS Pseudo-Elements Test: Reference [TXT] highlight-painting-currentcolor-005.html 2022-11-12 16:50 1.2K CSS Pseudo-Elements Test: Custom Highlights currentcolor on visited [TXT] highlight-painting-shadows-horizontal-ref.html 2024-04-30 06:02 2.2K CSS Pseudo-Elements Test: Shadows on highlights horizontal text - reference [TXT] highlight-painting-shadows-horizontal.html 2025-02-12 06:02 1.3K CSS Pseudo-Elements Test: Shadows on highlights horizontal text [TXT] highlight-painting-shadows-vertical-ref.html 2024-04-30 06:02 2.2K CSS Pseudo-Elements Test: Shadows on highlights vertical text - reference [TXT] highlight-painting-shadows-vertical.html 2025-02-12 06:02 1.4K CSS Pseudo-Elements Test: Shadows on highlights vertical text [TXT] highlight-painting-soft-hyphens-001-ref.html 2022-11-12 16:48 674 CSS Pseudo-Elements Test: highlight painting: soft hyphens [TXT] highlight-painting-soft-hyphens-001.html 2022-11-12 16:47 1.4K CSS Pseudo-Elements Test: highlight painting: soft hyphens [TXT] highlight-painting-soft-hyphens-002-crash.html 2022-11-12 16:47 575 CSS Pseudo-Elements Test: highlight painting: soft hyphens near atomic inlines [TXT] highlight-styling-001-ref.html 2022-11-12 16:48 545 [TXT] highlight-styling-001.html 2025-02-28 06:02 1.0K CSS Pseudo-Elements Test: highlight styling: custom properties are applicable properties in highlight pseudos [TXT] highlight-styling-002-ref.html 2022-11-12 16:48 545 [TXT] highlight-styling-002.html 2024-04-26 06:02 1.0K CSS Pseudo-Elements Test: highlight styling: originating custom property values are used for highlight pseudos [TXT] highlight-styling-003-ref.html 2025-02-28 06:02 372 [TXT] highlight-styling-003.html 2025-02-28 06:02 968 CSS Pseudo-Elements Test: highlight styling: compat stroke/fill properties [TXT] highlight-styling-004-ref.html 2025-02-28 06:02 505 CSS Pseudo-Elements Reference: the light-dark() function in highlight pseudos [TXT] highlight-styling-004.html 2025-02-28 06:02 1.0K CSS Pseudo-Elements Test: the light-dark() function in highlight pseudos [TXT] highlight-styling-005-ref.html 2025-03-01 06:02 563 CSS Pseudo-Elements Reference: Invalidation on custom property changes [TXT] highlight-styling-005.html 2025-03-01 06:02 1.3K CSS Pseudo-Elements Test: Invalidation on custom property changes [TXT] highlight-z-index-001-ref.html 2022-11-12 16:48 539 CSS Reftest Reference [TXT] highlight-z-index-001.html 2022-11-12 16:50 1.5K CSS Pseudo-Elements Test: highlight pseudo-element drawn below positioned element [TXT] highlight-z-index-002-ref.html 2022-11-12 16:48 494 CSS Reftest Reference [TXT] highlight-z-index-002.html 2022-11-12 16:47 1.5K CSS Pseudo-Elements Test: highlight pseudo-element drawn below positioned element [TXT] idlharness.html 2022-11-12 16:47 739 CSS Pseudo Element API IDL tests [TXT] input-element-pseudo-open.optional.html 2025-01-11 06:01 1.8K [TXT] marker-and-other-pseudo-elements-ref.html 2022-11-12 16:48 500 CSS Test: ::marker interaction with ::before, ::after, and ::first-letter pseudo elements reference file [TXT] marker-and-other-pseudo-elements.html 2022-11-12 16:48 850 CSS Test: ::marker interaction with ::before, ::after, and ::first-letter pseudo elements [TXT] marker-animate-002-ref.html 2022-11-12 16:48 112 [TXT] marker-animate-002.html 2022-11-12 16:48 470 CSS Test: A Web Animations only apply to restricted properties on ::marker pseudo-elements [TXT] marker-animate.html 2022-11-12 16:48 1.8K CSS Pseudo-Elements Test: Reverted styles for ::marker [TXT] marker-color-ref.html 2022-11-12 16:48 403 CSS Test: ::marker formatting with color property reference file [TXT] marker-color.html 2022-11-12 16:50 622 CSS Test: ::marker formatting with color property [TXT] marker-computed-content.html 2023-04-19 06:01 1.9K CSS Pseudo-Elements Test: Computed size of ::marker [TXT] marker-computed-size.html 2022-11-12 16:47 2.7K CSS Pseudo-Elements Test: Computed size of ::marker [TXT] marker-content-001-ref.html 2022-11-12 16:47 338 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-001.html 2022-11-12 16:47 604 CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-001b.html 2022-11-12 16:47 622 CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-001c.html 2022-11-12 16:48 647 CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-002-ref.html 2022-11-12 16:48 428 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-002.html 2022-11-12 16:48 525 CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-003-ref.html 2022-11-12 16:48 444 CSS Reference: ::marker pseudo elements styled with 'content' property and display:grid [TXT] marker-content-003.html 2022-11-12 16:48 591 CSS Test: ::marker pseudo elements styled with 'content' property and display:grid [TXT] marker-content-003b.html 2022-11-12 16:48 605 CSS Test: ::marker pseudo elements styled with 'content' property and display:inline-grid [TXT] marker-content-004-ref.html 2022-11-12 16:50 544 CSS Reference: ::marker pseudo elements styled with 'content' property and display:flex [TXT] marker-content-004.html 2022-11-12 16:48 644 CSS Test: ::marker pseudo elements styled with 'content' property and display:flex [TXT] marker-content-005-ref.html 2022-11-12 16:47 413 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-005.html 2022-11-12 16:47 587 CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-006-ref.html 2022-11-12 16:47 466 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-006.html 2022-11-12 16:47 599 CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-007-ref.html 2022-11-12 16:48 574 CSS Reference: ::marker pseudo elements styled with 'content' property and display:inline-grid [TXT] marker-content-007.tentative.html 2022-11-12 16:48 683 CSS Test: ::marker pseudo elements styled with 'content' property and display:inline-grid [TXT] marker-content-008-ref.html 2022-11-12 16:48 707 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-008.tentative.html 2022-11-12 16:48 851 CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-009-ref.html 2022-11-12 16:48 1.2K CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-009.tentative.html 2022-11-12 16:48 1.1K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-010-ref-001.html 2022-11-12 16:50 839 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-010-ref-002.html 2022-11-12 16:48 824 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-010.html 2022-11-12 16:47 1.1K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-011-ref.html 2022-11-12 16:47 1.2K CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-011.tentative.html 2022-11-12 16:47 1.2K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-012-ref.html 2022-11-12 16:47 2.1K CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-012.html 2022-11-12 16:48 2.3K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-013-ref.html 2022-11-12 16:48 851 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-013.html 2022-11-12 16:48 1.5K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-014-ref.html 2022-11-12 16:48 1.1K CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-014.html 2022-11-12 16:48 1.6K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-015-ref.html 2022-11-12 16:48 647 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-015.html 2022-11-12 16:50 931 CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-016-ref.html 2022-11-12 16:48 429 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-016.html 2022-11-12 16:47 777 CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-017-ref.html 2022-11-12 16:47 455 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-017.html 2022-11-12 16:47 759 CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-018-ref.html 2022-11-12 16:47 1.2K CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-018.html 2022-11-12 16:48 1.6K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-019-ref.html 2022-11-12 16:48 467 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-019.html 2022-11-12 16:48 1.1K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-020-ref.html 2022-11-12 16:48 1.3K CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-020.html 2022-11-12 16:48 2.0K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-021-ref.html 2022-11-12 16:48 680 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-021.html 2022-11-12 16:50 2.0K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-022-ref.html 2022-11-12 16:48 607 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-022.html 2022-11-12 16:47 1.6K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-023-ref.html 2022-11-12 16:47 805 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-023.html 2022-11-12 16:47 1.2K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-content-024-ref.html 2022-11-12 16:47 446 CSS Reference: ::marker pseudo elements styled with 'content' property [TXT] marker-content-024.html 2022-11-12 16:48 1.2K CSS Test: ::marker pseudo elements styled with 'content' property [TXT] marker-default-styles.html 2022-11-12 16:48 1.8K CSS Pseudo-Elements Test: Default styles for ::marker [TXT] marker-display-computed.html 2022-11-12 16:48 1.9K CSS Pseudo-Elements Test: Supported properties in ::marker [TXT] marker-display-dynamic-001.html 2022-11-12 16:48 821 CSS Test: ::marker is created dynamically properly [TXT] marker-font-properties-ref.html 2022-11-12 16:48 519 CSS Test: ::marker formatting with font properties reference file [TXT] marker-font-properties.html 2022-11-12 16:48 825 CSS Test: ::marker formatting with font properties [TXT] marker-font-variant-numeric-default-ref.html 2022-11-12 16:50 1.4K CSS Reftest Reference [TXT] marker-font-variant-numeric-default.html 2022-11-12 16:48 2.8K ::marker has 'font-variant-numeric: tabular-nums' by default [TXT] marker-font-variant-numeric-normal-ref.html 2024-11-18 06:02 2.6K CSS Reftest Reference [TXT] marker-font-variant-numeric-normal.html 2024-11-18 06:02 3.1K ::marker accepts 'font-variant-numeric: normal' [TXT] marker-hit-testing.html 2023-05-23 06:01 3.1K CSS Pseudo-Elements Test: Hit testing ::marker [TXT] marker-hyphens-ref.html 2022-11-12 16:47 423 CSS Reftest Reference [TXT] marker-hyphens.html 2022-11-12 16:48 1.2K ::marker supports 'hyphens' [TXT] marker-inherit-line-height-ref.html 2022-11-12 16:48 386 Reference: Check that :marker inherits line-height [TXT] marker-inherit-line-height.html 2022-11-12 16:48 845 Check that :marker inherits line-height [TXT] marker-inherit-values-ref.html 2022-11-12 16:48 478 CSS Test: ::marker inherits values from originating element reference file [TXT] marker-inherit-values.html 2022-11-12 16:48 899 CSS Test: ::marker inherits values from originating element [TXT] marker-intrinsic-contribution-001.html 2022-11-12 16:48 2.0K CSS Test: intrinsic contribution of ::marker [TXT] marker-intrinsic-contribution-002-ref.html 2022-11-12 16:50 715 CSS Reference: intrinsic contribution of ::marker [TXT] marker-intrinsic-contribution-002.html 2022-11-12 16:48 1.5K CSS Test: intrinsic contribution of ::marker [TXT] marker-letter-spacing-ref-001.html 2022-11-12 16:47 1.3K CSS Reftest Reference [TXT] marker-letter-spacing-ref-002.html 2022-11-12 16:47 1.3K CSS Reftest Reference [TXT] marker-letter-spacing.html 2022-11-12 16:47 2.1K ::marker supports 'letter-spacing' [TXT] marker-line-break-ref.html 2022-11-12 16:47 427 CSS Reftest Reference [TXT] marker-line-break.html 2022-11-12 16:48 1.7K ::marker supports 'line-break' [TXT] marker-line-height-ref.html 2022-11-12 16:48 694 CSS Reftest Reference [TXT] marker-line-height.html 2022-11-12 16:48 1.9K ::marker supports 'line-height' [TXT] marker-list-style-position-ref-001.html 2022-11-12 16:48 898 CSS Reference: ::marker pseudo elements styled with 'list-style-position' property [TXT] marker-list-style-position-ref-002.html 2022-11-12 16:48 919 CSS Reference: ::marker pseudo elements styled with 'list-style-position' property [TXT] marker-list-style-position.html 2022-11-12 16:48 1.7K CSS Test: ::marker pseudo elements styled with 'list-style-position' property [TXT] marker-overflow-wrap.html 2022-11-12 16:50 1.7K ::marker supports 'overflow-wrap' [TXT] marker-reverted-styles.html 2022-11-12 16:48 1.8K CSS Pseudo-Elements Test: Reverted styles for ::marker [TXT] marker-tab-size-ref.html 2022-11-12 16:47 961 CSS Reftest Reference [TXT] marker-tab-size.html 2022-11-12 16:47 1.4K ::marker supports 'tab-size' [TXT] marker-text-align-001-ref.html 2023-01-04 06:00 1.2K CSS Reference: ::marker pseudo elements styled with 'text-align' property [TXT] marker-text-align-001.html 2023-01-04 06:00 1.5K CSS Test: ::marker pseudo elements styled with 'text-align' property [TXT] marker-text-align-002-ref.html 2023-01-04 06:00 899 CSS Test: ::marker pseudo elements styled with 'text-align' property [TXT] marker-text-align-002.html 2023-01-04 06:00 1.0K CSS Test: ::marker pseudo elements styled with 'text-align' property [TXT] marker-text-align-003-ref.html 2023-01-04 06:00 925 CSS Test: ::marker pseudo elements styled with 'text-align' property [TXT] marker-text-align-003.html 2023-01-04 06:00 1.0K CSS Test: ::marker pseudo elements styled with 'text-align' property [TXT] marker-text-combine-upright-ref.html 2024-11-29 06:02 708 CSS Reference: ::marker supports 'text-combine-upright' [TXT] marker-text-combine-upright.html 2024-11-29 06:02 1.4K CSS Test: ::marker supports 'text-combine-upright' [TXT] marker-text-decoration-skip-ink-ref.html 2022-11-12 16:48 837 CSS Reftest Reference [TXT] marker-text-decoration-skip-ink.html 2022-11-12 16:48 1.7K ::marker supports 'text-decoration-skip-ink' [TXT] marker-text-emphasis-ref.html 2022-11-12 16:48 1.0K CSS Reftest Reference [TXT] marker-text-emphasis.html 2022-11-12 16:48 1.8K ::marker supports 'text-emphasis' [TXT] marker-text-shadow-ref.html 2022-11-12 16:50 438 CSS Reftest Reference [TXT] marker-text-shadow.html 2022-11-12 16:48 1.1K ::marker supports 'text-shadow' [TXT] marker-text-transform-default-ref.html 2022-11-12 16:47 879 CSS Reftest Reference [TXT] marker-text-transform-default.html 2022-11-12 16:47 1.2K ::marker has 'text-transform: none' by default [TXT] marker-text-transform-dynamic-ref.html 2022-11-12 16:47 549 CSS Reftest Reference [TXT] marker-text-transform-dynamic.html 2022-11-12 16:47 1.1K ::marker with dynamic 'text-transform' [TXT] marker-text-transform-uppercase-ref.html 2022-11-12 16:48 879 CSS Reftest Reference [TXT] marker-text-transform-uppercase.html 2022-11-12 16:48 1.2K ::marker accepts 'text-transform: uppercase' [TXT] marker-unicode-bidi-default-ref.html 2022-11-12 16:48 3.6K CSS Reftest Reference [TXT] marker-unicode-bidi-default.html 2022-11-12 16:48 2.2K ::marker has 'unicode-bidi: isolate' by default [TXT] marker-unicode-bidi-normal-ref.html 2022-11-12 16:48 3.6K CSS Reftest Reference [TXT] marker-unicode-bidi-normal.html 2022-11-12 16:48 2.2K ::marker accepts 'unicode-bidi: normal' [TXT] marker-variable-computed-style.html 2023-06-11 06:01 1.5K ::marker with variables [TXT] marker-variable-ref.html 2023-06-11 06:01 701 ::marker with variables [TXT] marker-variable.html 2023-06-11 06:01 739 ::marker with variables [TXT] marker-word-break-ref.html 2022-11-12 16:50 419 CSS Reftest Reference [TXT] marker-word-break.html 2022-11-12 16:48 1.7K ::marker supports 'word-break' [TXT] marker-word-spacing-ref.html 2022-11-12 16:47 1.3K CSS Reftest Reference [TXT] marker-word-spacing.html 2022-11-12 16:47 1.9K ::marker supports 'word-spacing' [TXT] outside-marker-paint-order-ref.html 2022-11-12 16:47 711 CSS Pseduo: painting order of outside ::marker box [TXT] outside-marker-paint-order.html 2022-11-12 16:47 1.0K CSS Pseduo: painting order of outside ::marker box [TXT] placeholder-as-multicol-crash.html 2022-11-12 16:48 285 [TXT] placeholder-excluded-properties.html 2022-11-12 16:48 671 ::placeholder should not support 'writing-mode', 'direction', and 'text-orientation' [TXT] placeholder-inherit.html 2022-11-12 16:50 803 CSS Pseudo Test: ::placeholder inherits from its originating element [TXT] placeholder-input-dynamic-crash.html 2022-11-12 16:48 355 Dynamic placeholder attribute changes after addition shouldn't crash [TXT] placeholder-input-number-notref.html 2022-11-12 16:47 248 CSS Test Reference [TXT] placeholder-input-number.html 2022-11-12 16:47 434 CSS Test: ::placeholder applies to input type="number" [TXT] pseudo-replaced-elements.html 2024-11-20 06:02 3.0K Replaced elements don't generate before / after CSS pseudo-elements [TXT] selection-background-color-001.html 2024-03-15 06:01 876 CSS Pseudo-Elements Test: ::selection background color [TXT] selection-background-painting-order-ref1.html 2022-11-12 16:47 1.0K [TXT] selection-background-painting-order-ref2.html 2022-11-12 16:47 1.2K [TXT] selection-background-painting-order.html 2022-11-12 16:47 1.9K CSS Pseudo-Elements Test: ::selection background always paints over unselected parts when selecting text [TXT] selection-contenteditable-011.html 2022-11-12 16:48 1.3K CSS Pseudo-Elements Test: active selection and contenteditable element [TXT] selection-input-011.html 2022-11-12 16:48 1.1K CSS Pseudo-Elements Test: active selection and input type="text" element [TXT] selection-intercharacter-011.html 2022-11-12 16:48 1.9K CSS Pseudo-Elements Test: active selection and inter-character spacing [TXT] selection-intercharacter-012.html 2022-11-12 16:48 1.7K CSS Pseudo-Elements Test: active selection and inter-character spacing [TXT] selection-link-001-ref.html 2022-11-12 16:48 585 CSS Pseudo-Elements Test: Reference file [TXT] selection-link-001.html 2022-11-12 16:48 924 CSS Pseudo-Elements Test: ::selection on visited and unvisited links [TXT] selection-link-002-ref.html 2022-11-12 16:50 584 CSS Pseudo-Elements Test: Reference file [TXT] selection-link-002.html 2022-11-12 16:48 922 CSS Pseudo-Elements Test: ::selection on visited and unvisited links [TXT] selection-link-003-ref.html 2022-11-12 16:47 538 CSS Pseudo-Elements Test: Reference file [TXT] selection-link-003.html 2022-11-12 16:47 951 CSS Pseudo-Elements Test: ::selection on visited and unvisited links [TXT] selection-originating-decoration-color-ref.html 2022-11-12 16:47 727 [TXT] selection-originating-decoration-color.html 2022-11-12 16:47 1.7K CSS Pseudo-Elements Test: originating decorations on unselected parts remain in originating text-decoration-color when selecting text [TXT] selection-originating-strikethrough-order-ref.html 2022-11-12 16:48 514 [TXT] selection-originating-strikethrough-order.html 2022-11-12 16:48 1.8K CSS Pseudo-Elements Test: originating line-through decorations paint over ::selection backgrounds on selected text [TXT] selection-originating-underline-order-ref.html 2022-11-12 16:48 1.4K [TXT] selection-originating-underline-order.html 2022-11-12 16:48 1.7K CSS Pseudo-Elements Test: originating underlines remain under unselected parts when selecting text [TXT] selection-over-highlight-001-ref.html 2024-04-24 06:02 395 CSS Pseudo-Elements Test: selected highlight highlight painting - reference [TXT] selection-over-highlight-001.html 2024-04-24 06:02 823 CSS Pseudo-Elements Test: selected highlight highlight painting [TXT] selection-overlay-and-grammar-001.html 2022-11-12 16:48 2.1K CSS Pseudo-Elements Test: ::selection overlay drawn over the ::grammar-error overlay [TXT] selection-overlay-and-spelling-001.html 2022-11-12 16:48 2.1K CSS Pseudo-Elements Test: ::selection overlay drawn over the ::spelling-error overlay [TXT] selection-paint-image-notref.html 2022-11-12 16:50 188 CSS Test Reference [TXT] selection-paint-image.html 2022-11-12 16:48 714 CSS Pseudo-Elements Test: Replaced content shown through selection [TXT] selection-textarea-011.html 2022-11-12 16:47 1.1K CSS Pseudo-Elements Test: active selection and textarea element [TXT] selection-universal-shadow-dom.html 2022-11-12 16:47 943 CSS Pseudo-Elements Test: Universal ::selection in Shadow DOM [TXT] spelling-error-001-ref.html 2022-11-12 16:47 694 CSS Reftest Reference [TXT] spelling-error-001.html 2022-11-12 16:47 960 CSS Pseudo-Elements Test: highlighting of spelling error (basic) [TXT] spelling-error-002-manual.html 2022-11-12 16:48 897 CSS Pseudo-Elements Test: highlighting of spelling error [TXT] spelling-error-003-manual.html 2022-11-12 16:48 915 CSS Pseudo-Elements Test: highlighting of spelling error [TXT] spelling-error-004-crash.html 2022-11-12 16:48 843 CSS Pseudo-Elements Test: spelling error with unusual root element [TXT] spelling-error-005-crash.html 2022-11-14 20:47 770 CSS Pseudo-Elements Test: spelling error with unusual root element [TXT] spelling-error-006-notref.html 2022-11-12 16:48 445 CSS Pseudo-Elements Test: spelling error with originating decorations [TXT] spelling-error-006.html 2022-11-12 16:48 827 CSS Pseudo-Elements Test: spelling error with originating decorations [TXT] svg-text-selection-002.html 2023-03-03 06:00 1.7K CSS Pseudo Test: active selection of text within a svg object styled with 'color' [TXT] target-text-001.html 2022-11-12 16:47 627 CSS Pseudo-Elements Test: ::target-text color rendering - basic [TXT] target-text-002.html 2022-11-12 16:47 655 CSS Pseudo-Elements Test: ::target-text color rendering - match across elements [TXT] target-text-003.html 2022-11-12 16:48 602 CSS Pseudo-Elements Test: ::target-text color rendering - two matches [TXT] target-text-004.html 2022-11-12 16:48 822 CSS Pseudo-Elements Test: ::target-text color rendering - with selection [TXT] target-text-005.html 2022-11-12 16:48 841 CSS Pseudo-Elements Test: ::target-text color rendering - with transparent selection [TXT] target-text-006.html 2022-11-12 16:48 560 CSS Pseudo-Elements Test: ::target-text color rendering - text rendered once [TXT] target-text-007.html 2022-11-12 16:48 829 CSS Pseudo-Elements Test: ::target-text text color with transparent originating color [TXT] target-text-008-ref.html 2022-11-12 16:48 433 CSS Pseudo-Elements Test: Reference [TXT] target-text-008.html 2022-11-12 16:50 728 CSS Pseudo-Elements Test: ::target-text visited links [TXT] target-text-009.html 2023-11-23 06:01 686 CSS Pseudo-Elements Test: ::target-text color rendering - overlap targets [TXT] target-text-010.html 2023-11-23 06:01 908 CSS Pseudo-Elements Test: ::target-text color rendering - overlap targets with hidden: until-found [TXT] target-text-dynamic-001-ref.html 2022-11-12 16:48 355 CSS Pseudo-Elements Test: Reference [TXT] target-text-dynamic-001.html 2022-11-12 16:48 1.0K CSS Pseudo-Elements Test: Dynamic change ::target-text background color [TXT] target-text-dynamic-002.html 2022-11-12 16:47 1.0K CSS Pseudo-Elements Test: Dynamic change ::target-text background color [TXT] target-text-dynamic-003.html 2022-11-12 16:47 1.0K CSS Pseudo-Elements Test: Dynamic change ::target-text background color [TXT] target-text-dynamic-004.html 2024-04-26 06:02 1.0K CSS Pseudo-Elements Test: Dynamic change ::target-text background color [TXT] target-text-five-words-ref.html 2023-11-23 06:01 198 CSS Test Reference [TXT] target-text-lime-green-ref.html 2022-11-12 16:48 258 [TXT] target-text-lime-ref.html 2022-11-12 16:48 302 [TXT] target-text-shadow-horizontal-ref.html 2024-04-30 06:02 558 CSS Pseudo-Elements Test: Shadows on horizontal target text - reference [TXT] target-text-shadow-horizontal.html 2025-02-06 06:01 872 CSS Pseudo-Elements Test: Shadows on horizontal target text [TXT] target-text-shadow-vertical-ref.html 2024-04-30 06:02 591 CSS Pseudo-Elements Test: Shadows on vertical target text - reference [TXT] target-text-shadow-vertical.html 2025-02-12 06:02 861 CSS Pseudo-Elements Test: Shadows on vertical target text [TXT] target-text-text-decoration-001-ref.html 2022-11-12 16:48 339 CSS Pseudo-Elements Test: Reference ::target-text text-decoration-color [TXT] target-text-text-decoration-001.html 2022-11-12 16:48 680 CSS Pseudo-Elements Test: ::target-text text-decoration [TXT] target-text-two-words-ref.html 2022-11-12 16:48 189 CSS Test Reference [TXT] text-selection.html 2022-11-12 16:48 3.1K CSS Pseudo-Elements Test: Text selection [TXT] textpath-selection-011-ref.html 2022-11-12 16:50 1.3K CSS Reftest Reference [TXT] textpath-selection-011.html 2022-11-12 16:48 2.5K CSS Test: active selection of text following a path (complex)