text-autospace-transform-full-width-001.tentative.html (738B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Text Test: text-transform:full-width suppresses autospacing</title> 4 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> 5 <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> 6 <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-autospace-property"> 7 <link rel="stylesheet" href="/fonts/ahem.css"> 8 <link rel="match" href="text-autospace-transform-full-width-001-ref.html"> 9 10 <style> 11 #container { 12 font-family: Ahem; 13 font-size: 20px; 14 text-autospace: normal; 15 } 16 .fw { 17 text-transform: full-width; 18 } 19 </style> 20 21 <div id="container"> 22 <div class="fw">国国XX国</div> 23 <div class="fw" style="writing-mode: vertical-rl" >国国XX国</div> 24 </div>