I need to know the height of all <html></html> element in page.
All browsers calculate height of all html content to get documentElement height. But IE8 just takes all available height of page.
Example in Сhrome:

Example in IE8:

So how can I get "right" height of documentElement in IE8 ?.
Unfortunately, height of body element is not suitable because in this case the margin of the <h1> is not taken into account. I cannot change HTML I need to get it through JS for any page.