Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/embedded-content/the-object-element/object-image-only-for-print.html - WPT Dashboard Interop Dashboard
<!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="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>