| Index: chrome/test/data/printing/layout_tests/source_html/css/repeating-item.html
|
| diff --git a/chrome/test/data/printing/layout_tests/source_html/css/repeating-item.html b/chrome/test/data/printing/layout_tests/source_html/css/repeating-item.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cc64453a80f3c90248eabb238a4076999b145b45
|
| --- /dev/null
|
| +++ b/chrome/test/data/printing/layout_tests/source_html/css/repeating-item.html
|
| @@ -0,0 +1,45 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| + <head>
|
| + <style>
|
| + @media screen {
|
| + #logo {
|
| + border: solid transparent;
|
| + position: fixed;
|
| + bottom: 2px;
|
| + right: 3px;
|
| + float: right;
|
| + }
|
| + #logo:hover {
|
| + background: rgba(0, 170, 0, 0.3);
|
| + }
|
| + #logo:active {
|
| + background: rgba(248, 253, 36, 0.3);
|
| + }
|
| + .page-break {
|
| + display: none;
|
| + }
|
| + }
|
| + @media print {
|
| + #logo {
|
| + position: fixed;
|
| + bottom: 0;
|
| + right: 0;
|
| + }
|
| + .page-break {
|
| + display: block;
|
| + page-break-before: always;
|
| + }
|
| + }
|
| + </style>
|
| + <script type='text/javascript'></script>
|
| + </head>
|
| + <body>
|
| + <div id="logo" width="35" height="35">
|
| + <img src="./resources/logo.png"> </img>
|
| + </div>
|
| + </div><div>Page 1</div><div class="page-break">
|
| + </div><div>Page 2</div><div class="page-break">
|
| + </div><div>Page 3</div>
|
| + </body>
|
| +</html>
|
|
|