mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
498 B
HTML
21 lines
498 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body style="border:3px solid;">
|
|
<div style="float:left;">Kitty</div>
|
|
<div>
|
|
<div><div style="clear:both"></div></div>
|
|
Kitty
|
|
<div style="clear:both">.</div>
|
|
<div style="float:left;"></div>
|
|
</div>
|
|
<div id="i">x</div>
|
|
<div style="clear:both"></div>
|
|
<script>
|
|
document.body.offsetTop;
|
|
document.getElementById("i").textContent += "x";
|
|
document.body.offsetTop;
|
|
document.getElementById("i").textContent += "x";
|
|
</script>
|
|
</body>
|
|
</html>
|