OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <link rel="stylesheet" href="resources/default.css"> | 3 <link rel="stylesheet" href="resources/default.css"> |
4 <style> | 4 <style> |
5 .translated { | 5 .translated { |
6 transform: scale(2, 2); | 6 transform: scale(2, 2); |
7 -webkit-transform: scale(2, 2); | 7 -webkit-transform: scale(2, 2); |
8 -moz-transform: scale(2, 2); | 8 -moz-transform: scale(2, 2); |
9 } | 9 } |
10 </style> | 10 </style> |
11 <script src="resources/repaint.js"></script> | 11 <script src="resources/repaint.js"></script> |
12 <script> | 12 <script> |
13 if (window.testRunner) | 13 if (window.testRunner) |
14 testRunner.dumpAsText(true); | 14 testRunner.dumpAsTextWithPixelResults(); |
15 | 15 |
16 function repaintTest() | 16 function repaintTest() |
17 { | 17 { |
18 document.getElementById('t').setAttribute("class", "green translated
"); | 18 document.getElementById('t').setAttribute("class", "green translated
"); |
19 } | 19 } |
20 </script> | 20 </script> |
21 </head> | 21 </head> |
22 <body style="height:2000px;" onload="runRepaintTest()"> | 22 <body style="height:2000px;" onload="runRepaintTest()"> |
23 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: RenderL
ayer fixed position logic needs more basic testing --> | 23 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: RenderL
ayer fixed position logic needs more basic testing --> |
24 <!-- You should see no red on this page. --> | 24 <!-- You should see no red on this page. --> |
25 <div style="position: absolute; top: 300px; left: 100px;" class="red"></div> | 25 <div style="position: absolute; top: 300px; left: 100px;" class="red"></div> |
26 <div id="t" style="position: fixed; top: 125px; left: 125px; width: 50px; he
ight: 50px;" class="green"></div> | 26 <div id="t" style="position: fixed; top: 125px; left: 125px; width: 50px; he
ight: 50px;" class="green"></div> |
27 <script> | 27 <script> |
28 window.scrollTo(0, 200); | 28 window.scrollTo(0, 200); |
29 </script> | 29 </script> |
30 </body> | 30 </body> |
31 </html> | 31 </html> |
OLD | NEW |