Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 | |
| 3 <style> | |
| 4 body { | |
| 5 height: 2000px; | |
| 6 width: 2000px; | |
| 7 } | |
| 8 ::-webkit-scrollbar { | |
|
ajuma
2016/09/19 17:37:39
Is this part needed?
sunxd
2016/09/19 18:54:32
Done.
| |
| 9 width: 0px; | |
| 10 height: 0px; | |
| 11 } | |
| 12 </style> | |
| 13 | |
| 14 <script> | |
| 15 function viewport() { | |
| 16 return window.visualViewport; | |
|
ajuma
2016/09/19 17:37:39
This seems unused.
sunxd
2016/09/19 18:54:32
Done.
| |
| 17 } | |
| 18 | |
| 19 window.internals.setPageScaleFactor(-1); | |
| 20 | |
| 21 window.onload = function() { | |
| 22 if (window.testRunner) | |
| 23 window.testRunner.capturePixelsAsyncThen(function() {}); | |
|
ajuma
2016/09/19 17:37:39
Would it work to set this up in the waitUntilDone/
| |
| 24 } | |
| 25 </script> | |
| OLD | NEW |