(axis, body, html, computedStyle)
| 3326 | } |
| 3327 | |
| 3328 | function getSize(axis, body, html, computedStyle) { |
| 3329 | 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); |
| 3330 | } |
| 3331 | |
| 3332 | function getWindowSizes(document) { |
| 3333 | var body = document.body; |
no test coverage detected
searching dependent graphs…