tor-browser

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

text-perspective-001.html (628B)


      1 <!doctype>
      2 <meta charset="utf-8">
      3 <title>CSS Test: Text is not incorrectly clipped in presence of perspective.</title>
      4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      5 <link rel="author" title="Mozilla" href="https://mozilla.org">
      6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1494685">
      7 <link rel="mismatch" href="about:blank">
      8 <style>
      9 * {
     10  margin: 0;
     11  padding: 0;
     12 }
     13 .container {
     14  perspective: 1px;
     15 }
     16 .heading {
     17  transform: translateZ(-9px) scale(10);
     18 }
     19 h1 {
     20  font-size: 100px;
     21 }
     22 </style>
     23 <div class="container">
     24  <div class="heading">
     25    <h1>X</h1>
     26  </div>
     27 </div>