letter-spacing-control-chars-001.html (792B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title>letter-spacing should not be applied to zero-width format controls</title> 6 <link rel=match href="reference/letter-spacing-control-chars-001.ref.html"> 7 <link rel=help href="https://drafts.csswg.org/css-text-3/#letter-spacing-property"> 8 <style> 9 .test { 10 font: 12px/2 monospace; 11 letter-spacing: 4px; 12 } 13 </style> 14 </head> 15 <body> 16 The two lines below should match:<br> 17 <div class=test> 18 ​let​ter​spac​ing​ should not be 19 ‌af‌fec‌ted‌ by 20 ‍ze‍ro‍-‍width‍ 21 ⁠for⁠mat⁠ 22 characters 23 </div> 24 <div class=test> 25 letterspacing should not be 26 affected by 27 zero-width 28 format 29 characters 30 </div> 31 </body> 32 </html>