blob: 4cb7b4a8570782095fe6c9e5dbd09c9db9c2ef07 [file] [log] [blame]
<!DOCTYPE html>
<style>
/* Disable kerning because kerning may differ for different node tree. */
html { font-kerning: none; }
#elm { display:block; width:10em; height:10em; visibility:hidden; }
</style>
<p>The word "PASS" should be seen below.</p>
<div>
P<img id="elm">ASS
</div>
<script>
document.body.offsetTop;
document.getElementById("elm").style.float = "left";
</script>