wpt / css / css-gaps / multicol / multicol-gap-decorations-003.html

Status: FAIL | Duration: 16ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-gaps/multicol/multicol-gap-decorations-003.html

<!DOCTYPE html>
<title>
    CSS Gap Decorations: Multicolumn gap decorations painted basic case.
</title>
<link rel="help" href="https://drafts.csswg.org/css-gaps-1/">
<link rel="match" href="multicol-gap-decorations-003-ref.html">
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<style>
    body {
        margin: 0px;
    }

    #container {
        border: 2px solid rgb(96 139 168);
        width: 200px;
        column-count: 3;
        column-width: 60px;
        column-gap: 10px;
        column-rule-width: 10px;
        column-rule-style: solid;
        column-rule-color: blue;
    }

    p {
        background: rgb(96 139 168 / 0.2);
        height: 200px;
        margin: 0px;
    }
</style>

<div id="container">
    <p></p>
    <p></p>
    <p></p>
</div>

/css/css-gaps/multicol/multicol-gap-decorations-003-ref.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-gaps-1/">
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<style>
    body {
        margin: 0px;
    }

    .outer {

        border: 2px solid rgb(96 139 168);
        width: 200px;
        height: 200px;

    }

    .container1 {
        position: absolute;
        top: 2px;
        column-gap: 10px;
        display: flex;
        height: 200px;
    }

    .items1 {
        background: rgb(96 139 168 / 0.2);
        height: 40px;
        margin: 0px;
        width: 60px;
        height: 200px;
    }

    .column-gap1 {
        position: absolute;
        height: 200px;
        width: 10px;
        background: blue;
        top: 2px;
    }

    .spanner {
        position: absolute;
        background: cyan;
        width: 200px;
        height: 18px;
        top: 42px;
        left: 2px;
        opacity: 0.5;
    }
</style>
<div class="outer">
    <div class="container1">
        <div class="items1"></div>
        <div class="items1"></div>
        <div class="items1"></div>
    </div>
    <div class="column-gap1" style="left:62px;"></div>
    <div class="column-gap1" style="left:132px;"></div>
</div>