22 <div>This checks that we don't wrongly propagate the body's overflow clip when we shouldn't.
<br>This text should be visible in the output.
</div>
24 document
.body
.offsetTop
;
26 // This removes the body's overflow clip propagation, which should make the text above appear.
27 document
.documentElement
.style
.overflow
= "visible";
28 document
.body
.style
.overflowY
= "visible";