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/abspos/positioned-grid-items-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<title>CSS Grid Layout Test: Positioned grid items</title>
<link rel="author" title="Manuel Rego" href="mailto:rego@igalia.com">
<meta name="assert" content="Checks that positioned grid items (absolute or fixed) do not cause a crash."/>
<link rel="stylesheet" href="/css/support/grid.css">
<body>
<div class="grid">
<div style="position: absolute;"></div>
<div style="position: fixed;"></div>
</div>
</body>
</html>