Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-position/nested-positions-crash.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<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>