Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-color/light-dark-image-none.html
<!DOCTYPE html> <title>light-dark() with none rendered as transparent image</title> <link rel="help" href="https://drafts.csswg.org/css-color-5/#light-dark"> <link rel="match" href="light-dark-image-none-ref.html"> <style> li { list-style-image: light-dark(none, none); } </style> <ul> <li>This item should not have a visible marker</li> </ul>
/css/css-color/light-dark-image-none-ref.html
<!DOCTYPE html> <title>CSS Test Reference</title> <style> li { list-style-image: linear-gradient(transparent); } </style> <ul> <li>This item should not have a visible marker</li> </ul>