tor-browser

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

content-002-print.html (833B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://drafts.csswg.org/css-page-3/#populating-margin-boxes">
      4 <meta name="assert" content="Test quotes in the content property inside page margin boxes.">
      5 <meta charset="utf-8">
      6 <link rel="match" href="content-002-print-ref.html">
      7 <style>
      8  @page {
      9    margin: 4em;
     10 
     11    @top-left {
     12      text-align: left;
     13      vertical-align: top;
     14      content: open-quote "Trøndere gråter når " open-quote "Vinsjan på kaia" close-quote " blir deklamert" close-quote;
     15    }
     16 
     17    @bottom-left {
     18      quotes: "[" "]" "{" "}";
     19      text-align: left;
     20      vertical-align: top;
     21      content: open-quote "Trøndere gråter når " open-quote "Vinsjan på kaia" close-quote " blir deklamert" close-quote;
     22    }
     23  }
     24 </style>