OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 ::-webkit-scrollbar { | 4 ::-webkit-scrollbar { |
5 width: 0px; | 5 width: 0px; |
6 height: 0px; | 6 height: 0px; |
7 } | 7 } |
8 </style> | 8 </style> |
9 <script> | 9 <script> |
10 window.enablePixelTesting = true; | 10 window.enablePixelTesting = true; |
11 | 11 |
12 function scroll() { | 12 function scroll() { |
13 window.scrollTo(100,100); | 13 window.scrollTo(100,100); |
14 } | 14 } |
15 | 15 |
16 function scaleWithEventSender() { | 16 function scaleWithEventSender() { |
17 var scaleFactor = 2.0; | 17 var scaleFactor = 2.0; |
18 var scaleOffset = 0; | 18 var scaleOffset = 0; |
19 if (window.eventSender) { | 19 if (window.eventSender) { |
20 eventSender.scalePageBy(scaleFactor, scaleOffset, scaleOffset); | 20 eventSender.setPageScaleFactor(scaleFactor, scaleOffset, scaleOffse
t); |
21 } | 21 } |
22 } | 22 } |
23 | 23 |
24 function test() { | 24 function test() { |
25 document.body.style.width = (document.body.clientWidth + 100) + "px"; | 25 document.body.style.width = (document.body.clientWidth + 100) + "px"; |
26 scaleWithEventSender(); | 26 scaleWithEventSender(); |
27 scroll(); | 27 scroll(); |
28 } | 28 } |
29 </script> | 29 </script> |
30 <script src="../js/resources/js-test-pre.js"></script> | 30 <script src="../js/resources/js-test-pre.js"></script> |
31 </head> | 31 </head> |
32 <body style="height: 2000px; width: 2000px; margin:0px;" onload="test();"> | 32 <body style="height: 2000px; width: 2000px; margin:0px;" onload="test();"> |
33 <div style="position: fixed; bottom: 100px; right: 100px; z-index: 1"> | 33 <div style="position: fixed; bottom: 100px; right: 100px; z-index: 1"> |
34 <div style="left:0; top:0; width:100px; height:100px; position:absolute;
background:black;"></div> | 34 <div style="left:0; top:0; width:100px; height:100px; position:absolute;
background:black;"></div> |
35 <div style="left:100px; top:0; width:100px; height:100px; position:absol
ute; background:green;"></div> | 35 <div style="left:100px; top:0; width:100px; height:100px; position:absol
ute; background:green;"></div> |
36 | 36 |
37 <div style="left:0px; top:100px; width:100px; height:100px; position:abs
olute; background:yellow;"></div> | 37 <div style="left:0px; top:100px; width:100px; height:100px; position:abs
olute; background:yellow;"></div> |
38 <div style="left:100px; top:100px; width:100px; height:100px; position:a
bsolute; background:blue;"></div> | 38 <div style="left:100px; top:100px; width:100px; height:100px; position:a
bsolute; background:blue;"></div> |
39 </div> | 39 </div> |
40 </body> | 40 </body> |
41 </html> | 41 </html> |
OLD | NEW |