tor-browser

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

negative-margin-print.html (460B)


      1 <!DOCTYPE html>
      2 <title>Crash with negative @page margin when page margin boxes are defined.</title>
      3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      4 <link rel="help" href="https://issues.chromium.org/issues/384959130">
      5 <style>
      6  @page {
      7    margin: -10px;
      8 
      9    @bottom-right-corner {
     10      content: "";
     11      width: 30px;
     12      height: 30px;
     13      margin: 10px;
     14    }
     15 
     16    @right-middle {
     17      content: "";
     18    }
     19  }
     20 </style>