Relevant snippet of test:
```
div {
background:red;
height:100px;
width:100px;
}
/* This matches in user agents supporting ::-webkit-slider-thumb. */
@supports selector(input::-webkit-slider-thumb) {
div { background-color:green; }
}
We don't support `::-webkit-slider-thumb` so we don't get a green background, so we fail the test.
This is kind-of INVALID since it's depending on a nonstandard feature, but I guess the test is acknowledging that with `.tentative` in the name. So: let's just classify as S4.
Bug 1873608 Comment 1 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
Relevant snippet of test:
```css
div {
background:red;
height:100px;
width:100px;
}
/* This matches in user agents supporting ::-webkit-slider-thumb. */
@supports selector(input::-webkit-slider-thumb) {
div { background-color:green; }
}
```
We don't support `::-webkit-slider-thumb` so we don't get a green background, so we fail the test.
This is kind-of INVALID since it's depending on a nonstandard feature, but I guess the test is acknowledging that with `.tentative` in the name. So: let's just classify as S4.