tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

positioned-grid-descendants-012.html (946B)


      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 elements inside grid items are properly placed and sized when they have specific 'left', 'top' and 'right' 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: 30,
     22  right: 35,
     23  bottom: "auto",
     24 });
     25 </script>
     26 </body>