| <!DOCTYPE html> | |
| <html lang=en> | |
| <meta charset="utf-8"> | |
| <title>CSS Grid Layout Test: Grid positioned item dynamic change.</title> | |
| <link rel="help" href="https://drafts.csswg.org/css-grid-2/#abspos"> | |
| <style> | |
| .reference { | |
| display: grid; | |
| background: green; | |
| width: 100px; | |
| height: 100px; | |
| } | |
| </style> | |
| <body> | |
| <p>Test passes if it matches the reference.</p> | |
| <div class="reference"> | |
| </div> | |
| </body> | |
| </html> |