tor-browser

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

doc_print_media_simulation.html (505B)


      1 <html>
      2 <head>
      3  <title>test print media simulation</title>
      4  <script type="application/javascript">
      5 
      6  </script>
      7  <style>
      8    div {
      9      width: 1000px;
     10      height: 100px;
     11      background-color: #f00;
     12    }
     13 
     14    @media print {
     15      div {
     16        background-color: #00f;
     17      }
     18    }
     19  </style>
     20 </head>
     21 <body>
     22 <div></div>
     23 <iframe
     24  src='https://example.org/document-builder.sjs?html=<style>html { background-color: %23ff0;} @media print {html {background-color: %230ff;}}'>
     25 </iframe>
     26 </body>
     27 </html>