Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-lists/list-style-type-string-001a.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CSS Test: String value of list-style-type</title> <link rel="author" title="Xidorn Quan" href="mailto:quanxunzhen@gmail.com"> <link rel="help" href="https://drafts.csswg.org/css-lists-3/#valdef-list-style-type-string"> <link rel="match" href="list-style-type-string-001-ref.html"> <style> ol, ul { list-style-type: "# "; list-style-position: inside; } </style> </head> <body> <ol start="-1"> <li>item -1</li> <li>item 0</li> <li>item 1</li> <li>item 2</li> </ol> <ul start="-1"> <li>item -1</li> <li>item 0</li> <li>item 1</li> <li>item 2</li> </ul> </body> </html>
/css/css-lists/list-style-type-string-001-ref.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CSS Reference: String value of list-style-type</title> <link rel="author" title="Xidorn Quan" href="mailto:quanxunzhen@gmail.com"> <style> ol, ul { list-style: none; } li::before { content: "# "; font-variant-numeric: tabular-nums; } </style> </head> <body> <ol start="-1"> <li>item -1</li> <li>item 0</li> <li>item 1</li> <li>item 2</li> </ol> <ul start="-1"> <li>item -1</li> <li>item 0</li> <li>item 1</li> <li>item 2</li> </ul> </body> </html>