blob: da0ccdf6a38919eb0d10a4518b1623b970f03d0f [file] [log] [blame]
eric@webkit.orge6bf4162008-07-09 23:17:50 +00001<html>
2<style>
3div {
4 background: red;
5 width: 100px;
6 height: 100px;
7}
8@media print {
9 div {
10 background: green;
11 }
12 span {
13 font-style: italic;
14 }
15}
16</style>
17<script>
18 if (window.layoutTestController)
hamaji@chromium.orgfbee9662010-04-28 07:30:16 +000019 layoutTestController.setPrinting();
eric@webkit.orge6bf4162008-07-09 23:17:50 +000020</script>
21<body>
22 <div></div>
23 <span>When printing, you should see a green square above and this text should be italic.</span>
24</body>
25</html>