wordbreak-8-ref.html (592B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 5 <style type="text/css"> 6 .lc { text-transform: lowercase; } 7 .uc { text-transform: uppercase; } 8 </style> 9 <title>Test - word-break:break-all with text-transform and clusters</title> 10 </head> 11 <body> 12 <div class="lc">f<br>o<br>x<br>f<br>o̥<br>ẋ</div><br> 13 <div class="lc">fox<br>fo̥ẋ</div><br> 14 <div class="uc">f<br>o<br>x<br>f<br>o̥<br>ẋ</div><br> 15 <div class="uc">fox<br>fo̥ẋ</div><br> 16 </body> 17 </html>