Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-pseudo/marker-content-001c.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Test: ::marker pseudo elements styled with 'content' property</title> <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> <link rel="match" href="marker-content-001-ref.html"> <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo"> <style> li::marker { content: "1.\00a0"; display: block; margin: 0 auto 0 auto; } li:nth-of-type(2)::marker { content: "2.\00a0"; } li:nth-child(3)::marker { content: "3.\00a0"; } span { font-size: 32pt; } </style> </head> <body> <ol><li></li><li>B</li><li><span>C</span></li></ol> </body> </html>
/css/css-pseudo/marker-content-001-ref.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Reference: ::marker pseudo elements styled with 'content' property</title> <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> <style> span { font-size: 32pt; } </style> </head> <body> <ol><li></li><li>B</li><li><span>C</span></li></ol> </body> </html>