wpt / css / css-grid / grid-items / grid-item-border-padding-004.html

Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-grid/grid-items/grid-item-border-padding-004.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-grid-1/">
<link rel="match" href="grid-item-border-padding-004-ref.html">
<style>
.grid {
    display: grid;
    width: 100px;
    height: 100px;
    grid-template-columns: 100px;
    grid-template-rows: 100px;
    border-width: 5px 10px 15px 20px;
    border-style: solid;
    border-color: black;
    padding: 5px 10px 15px 20px;
}
.item {
    width: 50px;
    height: 50px;
    grid-row: 1/2;
    background-color: green;
}
</style>
<p>Test passes if the green box is correctly inset by asymmetric border and padding.</p>
<div class="grid">
    <div class="item"></div>
</div>

/css/css-grid/grid-items/grid-item-border-padding-004-ref.html

<!DOCTYPE html>
<p>Test passes if the green box is correctly inset by asymmetric border and padding.</p>
<div style="width: 100px; height: 100px; border-width: 5px 10px 15px 20px; border-style: solid; border-color: black; padding: 5px 10px 15px 20px;">
    <div style="width: 50px; height: 50px; background-color: green;"></div>
</div>