(axis, body, html, computedStyle)
| 1853 | } |
| 1854 | |
| 1855 | function getSize(axis, body, html, computedStyle) { |
| 1856 | return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE(10) ? parseInt(html['offset' + axis]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')]) : 0); |
| 1857 | } |
| 1858 | |
| 1859 | function getWindowSizes(document) { |
| 1860 | var body = document.body; |
no test coverage detected