boundary-shaping-001.html (713B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title>Text shaping must not be broken across inline box boundaries when there is no change in formatting</title> 6 <link rel=match href="reference/boundary-shaping-001.ref.html"> 7 <link rel=help href="https://drafts.csswg.org/css-text/#boundary-shaping"> 8 <style> 9 @font-face { 10 font-family: test; 11 src: url(resources/LinLibertine_Re-4.7.5.woff); 12 } 13 body { 14 font: 36px test; /* use a font that includes ligatures for "fi" etc */ 15 } 16 .a { 17 /* initial values for these properties should not interrupt shaping */ 18 vertical-align: initial; 19 padding: initial; 20 margin: initial; 21 border: initial; 22 } 23 </style> 24 </head> 25 <body> 26 of<span class=a>f</span>ice 27 </body> 28 </html>