Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 Tests that Page.getLayoutMetrics returns reasonable values. | |
| 2 | |
| 3 LayoutViewport: { | |
| 4 clientHeight : 600 | |
| 5 clientWidth : 785 | |
|
dgozman
2016/10/25 18:14:55
Could this flake on different platforms due to dif
Eric Seckler
2016/10/26 12:30:45
Not really, all platforms have the same size mock
| |
| 6 pageX : 0 | |
| 7 pageY : 200 | |
| 8 } | |
| 9 VisualViewport: { | |
| 10 clientHeight : 600 | |
| 11 clientWidth : 785 | |
| 12 offsetX : 0 | |
| 13 offsetY : 0 | |
| 14 pageX : 0 | |
| 15 pageY : 200 | |
| 16 scale : 1 | |
| 17 } | |
| 18 | |
| OLD | NEW |