OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <style> | 5 <style> |
6 html { | 6 html { |
7 background: gray; | 7 background: gray; |
8 } | 8 } |
9 | 9 |
10 body { | 10 body { |
11 -webkit-transform: rotate(20deg); | 11 -webkit-transform: rotate(20deg); |
12 -webkit-transform-origin: top left; | 12 -webkit-transform-origin: top left; |
13 background-color: silver; | 13 background-color: silver; |
14 overflow: hidden; | 14 overflow: hidden; |
15 } | 15 } |
16 | 16 |
17 .contents { | 17 .contents { |
18 height: 1200px; | 18 height: 1200px; |
19 width: 100%; | 19 width: 100%; |
20 border: 1px solid black; | 20 border: 1px solid black; |
21 } | 21 } |
22 </style> | 22 </style> |
23 <script> | 23 <script> |
24 if (window.testRunner) | 24 if (window.testRunner) |
25 testRunner.dumpAsText(true); | 25 testRunner.dumpAsTextWithPixelResults(); |
26 </script> | 26 </script> |
27 </head> | 27 </head> |
28 <body> | 28 <body> |
29 <div class="contents"></div> | 29 <div class="contents"></div> |
30 </body> | 30 </body> |
31 </html> | 31 </html> |
OLD | NEW |