Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text/letter-spacing/letter-spacing-211.html
<!DOCTYPE html> <html lang="en" > <meta charset="utf-8"> <title>letter-spacing at element boundaries</title> <link rel='author' title='Elika J. Etemad' href='http://fantasai.inkedblade.net/contact'> <link rel='help' href='https://www.w3.org/TR/css-text-3/#letter-spacing'> <link rel='help' href='https://www.w3.org/TR/css-text-decor-4/#emphasis-marks'> <link rel='match' href='reference/letter-spacing-211-ref.html'> <meta name="assert" content="Emphasis marks are centered on characters, not characters + spacing."> <style type='text/css'> @import "/fonts/ahem.css"; .contain { font: 20px/1 Ahem; margin: 1em; } .ls1 { letter-spacing: 1em; } .control p { white-space: pre-wrap; color: blue; } p { letter-spacing: 0; margin: 0; text-emphasis: dot; } </style> <div id='instructions'>Test passes if the blue pattern is identical to the black one.</div> <div class="contain"> <p class="ls1">ABC</p> </div> <div class="contain control"> <p>A B C </div>
/css/css-text/letter-spacing/reference/letter-spacing-211-ref.html
<!DOCTYPE html> <html lang="en" > <meta charset="utf-8"> <title>letter-spacing at element boundaries</title> <link rel='author' title='Elika J. Etemad' href='http://fantasai.inkedblade.net/contact'> <style type='text/css'> @import "/fonts/ahem.css"; .contain { font: 20px/1 Ahem; margin: 1em; } .control p { white-space: pre-wrap; } p { letter-spacing: 0; margin: 0; text-emphasis: dot; } </style> <div id='instructions'>Test passes if the blue pattern is identical to the black one.</div> <div class="contain control"> <p>A B C </div> <div class="contain control" style="color:blue"> <p>A B C </div>