| <!DOCTYPE html> | 
 | <meta charset="utf-8"> | 
 | <title>CSS Grid Layout Test: Positioned grid descendants</title> | 
 | <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com"> | 
 | <link rel="help" href="https://drafts.csswg.org/css-grid/#abspos" title="9. Absolute Positioning"> | 
 | <meta name="assert" content="Checks that absolutely positioned elements inside grid items are properly placed and sized when they have a specific 'left' offset and a static block position (top/bottom are 'auto')."> | 
 |  | 
 | <link rel="stylesheet" href="/fonts/ahem.css"> | 
 | <link rel="stylesheet" href="support/positioned-grid-descendants.css" /> | 
 |  | 
 | <script src="/resources/testharness.js"></script> | 
 | <script src="/resources/testharnessreport.js"></script> | 
 | <script src="/resources/check-layout-th.js"></script> | 
 |  | 
 | <body> | 
 | <div id="log"></div> | 
 | <script type="module"> | 
 | import {runTests} from "./support/positioned-grid-descendants.js"; | 
 | runTests({ | 
 |   left: 25, | 
 |   top: "auto", | 
 |   right: "auto", | 
 |   bottom: "auto", | 
 | }); | 
 | </script> | 
 | </body> |