text-autospace-dynamic-text-004.html (524B)
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">国国AAAA国国AAAA国国</div> 9 <script> 10 const target_text = document.getElementById('target').firstChild; 11 document.body.offsetTop; // Force layout. 12 target_text.deleteData(2, 2); 13 document.body.offsetTop; // Force layout. 14 target_text.deleteData(6, 2); 15 </script>