tor-browser

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

object-svg-only-for-print.html (584B)


      1 <!DOCTYPE html>
      2 <title>Test print result of svg not displayed on screen</title>
      3 
      4 <link rel="help" href="https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-object-element">
      5 <link rel="help" href="https://crbug.com/41477900">
      6 
      7 <link rel="match" href="object-image-only-for-print-ref.html">
      8 
      9 <style>
     10  @media not print {
     11    .print-only {
     12      display: none;
     13    }
     14  }
     15 </style>
     16 
     17 <p>
     18  Should print a green rectangle but not display it on screen.
     19 </p>
     20 
     21 <div>
     22 <object
     23  class="print-only"
     24  data="/images/green.svg"
     25  id="target"
     26  type="image/svg+xml"
     27 ></object>
     28 </div>