mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
12 lines
375 B
HTML
12 lines
375 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://crbug.com/1098840">
|
|
<title>Verifies changing 'display' nested positions is not problematic</title>
|
|
<div style="position:absolute; display:table;">
|
|
<div style="position:fixed;"></div>
|
|
</div>
|
|
<span></span>
|
|
<div id="boom" style="display:none;"></div>
|
|
<script>
|
|
document.body.offsetTop;
|
|
boom.style.display = "block";
|
|
</script>
|