mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
25 lines
443 B
HTML
25 lines
443 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function doe() {
|
|
document.getElementById('b').setAttribute('style', 'position: absolute;');
|
|
document.body.offsetHeight;
|
|
document.body.setAttribute('style', 'position: relative;');
|
|
document.body.offsetHeight;
|
|
document.getElementById('b').setAttribute('style', '');
|
|
}
|
|
setTimeout(doe,0);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<span style="position: relative; ">
|
|
<div>
|
|
<div id="b">
|
|
</div>
|
|
</div>
|
|
</span>
|
|
</body>
|
|
</html>
|