Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/text-autospace/text-autospace-transform-full-width-001.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text Test: text-transform:full-width suppresses autospacing</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="stylesheet" href="/fonts/ahem.css">
<link rel="match" href="text-autospace-transform-full-width-001-ref.html">
<style>
#container {
font-family: Ahem;
font-size: 20px;
text-autospace: normal;
}
.fw {
text-transform: full-width;
}
</style>
<div id="container">
<div class="fw">国国XX国</div>
<div class="fw" style="writing-mode: vertical-rl" >国国XX国</div>
</div>