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-transform/text-transform-fullwidth-007.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text level 3 Test: text-transform:fullwidth and preserved spaces</title>
<link rel="match" href="reference/text-transform-fullwidth-007-ref.html">
<meta name="assert" content="full-width does transforms U+0020 spaces to U+3000 within preserved white space.">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
div { font: 50px/1 Ahem; }
#test {
color: green;
white-space: pre-wrap;
}
span {
text-transform: full-width;
}
#ref {
color: red;
position: absolute;
z-index: -1;
}
</style>
<p>Test passes if there are two green squares and no red.
<div id=ref>x   x</div>
<div id=test>x<span> </span>x</div>