OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <title>SVG background-image tiling</title> | 5 <title>SVG background-image tiling</title> |
6 <style> | 6 <style> |
7 div{ | 7 div{ |
8 border: 1px solid #ccc; | 8 border: 1px solid #ccc; |
9 width: 100%; | 9 width: 100%; |
10 height: 100px; | 10 height: 100px; |
11 background-image:url('../../as-background-image/resources/constructi
on-tape.svg'); | 11 background-image:url('../../as-background-image/resources/constructi
on-tape.svg'); |
12 background-size: 100px 100%; | 12 background-size: 100px 100%; |
13 } | 13 } |
14 </style> | 14 </style> |
15 </head> | 15 </head> |
16 | 16 |
17 <body onload="runRepaintTest()"> | 17 <body onload="forceStyleRecalc();repaintTest();"> |
18 <div></div> | 18 <div></div> |
19 | 19 |
20 <script>var zoomCount = 4;</script> | 20 <script>var zoomCount = 4;</script> |
21 <script src="../../../fast/repaint/resources/repaint.js"></script> | 21 <script src="../../../fast/repaint/resources/text-based-repaint.js"></script> |
22 <script src="../resources/testPageZoom.js"></script> | 22 <script src="../resources/testPageZoom.js"></script> |
23 | 23 |
24 </body> | 24 </body> |
25 </html> | 25 </html> |
OLD | NEW |