orthogonal-positioned-grid-descendants-008.html (975B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Grid Layout Test: Positioned grid descendants</title> 4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-grid/#abspos" title="9. Absolute Positioning"> 6 <meta name="assert" content="Checks that absolutely positioned orthogonal elements inside grid items are properly placed and sized when they have specific 'left' and 'bottom' offsets."> 7 8 <link rel="stylesheet" href="/fonts/ahem.css"> 9 <link rel="stylesheet" href="support/positioned-grid-descendants.css" /> 10 11 <script src="/resources/testharness.js"></script> 12 <script src="/resources/testharnessreport.js"></script> 13 <script src="/resources/check-layout-th.js"></script> 14 15 <body> 16 <div id="log"></div> 17 <script type="module"> 18 import {runTests} from "./support/positioned-grid-descendants.js"; 19 runTests({ 20 left: 25, 21 top: "auto", 22 right: "auto", 23 bottom: 40, 24 orthogonal: true, 25 }); 26 </script> 27 </body>