Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-writing-modes/text-combine-upright-letter-spacing-001.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Writing Modes Test: text-combine-upright ignores letter-spacing</title> <link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#text-combine-layout"> <link rel="match" href="text-combine-upright-letter-spacing-001-ref.html"> <meta name="assert" content="text-combine-upright should ignore letter-spacing when composing text horizontally."> <style> span { text-combine-upright: all; } </style> <p style="writing-mode: vertical-rl">test <span style="letter-spacing: 2px">this</span> <span>this</span></p>
/css/css-writing-modes/text-combine-upright-letter-spacing-001-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Writing Modes Test: text-combine-upright ignores letter-spacing (reference)</title> <style> span { text-combine-upright: all; } </style> <p style="writing-mode: vertical-rl">test <span>this</span> <span>this</span></p>