Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/anonymous-grid-items-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="anonymous-grid-items-002-ref.html">
<p>Test passes if there are two lines below:</p>
<hr>
<div style="display: grid; grid-auto-flow: row;">
line one <span id="target" style="position: absolute; display: none;"></span> line two
</div>
<script>
document.body.offsetTop;
document.getElementById('target').style.display = 'inline';
</script>