tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

boundary-shaping-007.html (659B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset=utf-8>
      5 <title>Text shaping must be broken across inline box boundaries when padding or margin is non-zero</title>
      6 <link rel=match href="reference/boundary-shaping-007.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  padding-left: 10px;
     18 }
     19 .b {
     20  margin-right: 10px;
     21 }
     22 </style>
     23 </head>
     24 <body>
     25 of<span><span class=a><span><span class=b><span>f</span></span></span></span></span>ice
     26 </body>
     27 </html>