chromium/third_party/blink/web_tests/external/wpt/html/semantics/embedded-content/the-object-element/object-image-only-for-print.html

<!DOCTYPE html>
<title>Test print result of image not displayed on screen</title>

<link rel="help" href="https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-object-element">
<link rel="help" href="https://crbug.com/41477900">

<link rel="match" href="object-image-only-for-print-ref.html">

<style>
  @media not print {
    .print-only {
      display: none;
    }
  }
</style>

<p>
  Should print a green rectangle but not display it on screen.
</p>

<div>
<object
  class="print-only"
  data="/images/green.png"
  type="image/png"
></object>
</div>