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