(document)
| 3330 | } |
| 3331 | |
| 3332 | function getWindowSizes(document) { |
| 3333 | var body = document.body; |
| 3334 | var html = document.documentElement; |
| 3335 | var computedStyle = isIE(10) && getComputedStyle(html); |
| 3336 | return { |
| 3337 | height: getSize('Height', body, html, computedStyle), |
| 3338 | width: getSize('Width', body, html, computedStyle) |
| 3339 | }; |
| 3340 | } |
| 3341 | |
| 3342 | var classCallCheck = function (instance, Constructor) { |
| 3343 | if (!(instance instanceof Constructor)) { |
no test coverage detected
searching dependent graphs…