Status: PASS | Duration: 1ms | Subtests: 2/2 | Open test on wpt.live | wpt.fyi
Data from commit:
1efe22d Fix duplicate table cell padding with float layout (#675) (2026-08-10)
| Subtest | Status | Message |
|---|---|---|
| .grid 1 | PASS | |
| .grid 2 | PASS |
/css/css-grid/abspos/grid-positioned-items-gaps-002-rtl.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Grid Layout Test: Grid positioned items percentage and calc() gaps</title> <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com"> <link rel="help" href="https://drafts.csswg.org/css-grid-1/#abspos"> <link rel="help" href="https://drafts.csswg.org/css-grid-1/#gutters"> <meta name="assert" content="This test checks the behavior of the positioned items in a grid container with percentage and calc() gaps."> <link rel="stylesheet" href="/css/support/grid.css"> <style> .grid { grid-template-columns: 100px 100px 100px 100px; grid-template-rows: 50px 50px 50px 50px; width: 800px; height: 600px; border: 5px solid black; margin: 30px; padding: 15px; /* Ensures that the grid container is the containing block of the absolutely positioned grid children. */ position: relative; } .grid > div { position: absolute; top: 0; bottom: 0; left: 0; right: 0; background-color: lime; } </style> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/resources/check-layout-th.js"></script> <body onload="checkLayout('.grid')"> <div id="log"></div> <div class="grid directionRTL" style="gap: 10%;"> <div style="grid-column: 2 / 4; grid-row: 2 / 4;" data-offset-x="355" data-offset-y="125" data-expected-width="280" data-expected-height="160"> </div> </div> <div class="grid directionRTL" style="gap: calc(10% + 25px);"> <div style="grid-column: 2 / 4; grid-row: 2 / 4;" data-offset-x="305" data-offset-y="150" data-expected-width="305" data-expected-height="185"> </div> </div> </body>