tor-browser

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

font-variant-caps-invalidation-container-sizing.html (701B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-fonts/#font-variant-caps-prop">
      6 <link rel="match" href="font-variant-caps-invalidation-container-sizing-ref.html">
      7 <meta name="assert" content="Block container is sized properly when font-variant-caps is changed from normal to all-small-caps">
      8 <style>
      9 #container {
     10  width: min-content;
     11  border: 1px solid black;
     12  font-size: 100px;
     13 }
     14 </style>
     15 </head>
     16 <body>
     17  <div id="container">
     18    X
     19  </div>
     20 </body>
     21 <script>
     22 document.body.offsetHeight;
     23 document.getElementById("container").style["font-variant-caps"] = "all-small-caps";
     24 </script>
     25 </html>