blob: da0ccdf6a38919eb0d10a4518b1623b970f03d0f [file] [log] [blame]
<html>
<style>
div {
background: red;
width: 100px;
height: 100px;
}
@media print {
div {
background: green;
}
span {
font-style: italic;
}
}
</style>
<script>
if (window.layoutTestController)
layoutTestController.setPrinting();
</script>
<body>
<div></div>
<span>When printing, you should see a green square above and this text should be italic.</span>
</body>
</html>