tor-browser

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

text-box-trim-atomic-inline-001.html (702B)


      1 <!DOCTYPE html>
      2 <title>Test the `text-box-trim` isn't propagated into atomic inlines</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-box-trim">
      4 <link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-box-edge">
      5 <link rel="match" href="text-box-trim-atomic-inline-001-ref.html">
      6 <style>
      7 @import "support/MetricsTestFont.css";
      8 
      9 .spacer {
     10  background: lightgray;
     11  block-size: 100px;
     12 }
     13 .target {
     14  font: 100px/2 MetricsTestFont;
     15  text-box-trim: trim-both;
     16  text-box-edge: text;
     17 }
     18 .atomic {
     19  display: inline-block;
     20  background: lime;
     21 }
     22 </style>
     23 <div class="spacer"></div>
     24 <div class="target">
     25  <span class="atomic">ApÉx</span>
     26 </div>
     27 <div class="spacer"></div>