text-autospace-dynamic-text-001.html (474B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-autospace-property"> 4 <link rel="match" href="text-autospace-dynamic-text-001-ref.html"> 5 <style> 6 :root { text-autospace: normal; } 7 </style> 8 <div id="target">国国</div> 9 <script> 10 const target_text = document.getElementById('target').firstChild; 11 for (const ch of 'AA国国AA国国') { 12 document.body.offsetTop; // Force layout. 13 target_text.appendData(ch); 14 } 15 </script>