Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-page/background-image-only-for-print.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Test print result of background-image not displayed on screen</title>
<link rel="match" href="background-image-only-for-print-ref.html">
<style>
@media not print {
.print-only {
display: none;
}
}
#target {
background-image: url("/images/green.png");
height: 50px;
width: 100px;
}
</style>
<p>
Should print a green rectangle but not display it on screen.
</p>
<div id="target" class="print-only"></div>