Revision 28d63f19babbd14a18a0219acf21362fc5d52dbc authored by Henrik Skupin on 28 March 2018, 18:49:31 UTC, committed by moz-wptsync-bot on 28 March 2018, 18:49:31 UTC
To retrieve links via "link text" or "partial link text" the rendered
content of the element has to be used. This can be the case for CSS
transformations like "uppercase".
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1381519
gecko-commit: 3e204686f1b10441f48435890241dff6706d04dd
gecko-integration-branch: central
gecko-reviewers: ato
1 parent f5b48cf
Raw File
grid-support-grid-auto-columns-rows-002-ref.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Support for 'grid-auto-columns' and 'grid-auto-rows' properties accepting track listing as value</title>
<link rel="author" title="Rachel Andrew" href="mailto:me@rachelandrew.co.uk" />
<style>
    #grid {
        position: relative;
    }

    .absolute {
        position: absolute;
        top: 0;
        left: 0;
    }

    #first-column-first-row {
        width: 25px;
        height: 40px;
        background-color: purple;
    }

    #second-column-first-row {
        width: 50px;
        height: 40px;
        left: 25px;
        background-color: orange;
    }

    #first-column-second-row {
        width: 25px;
        height: 30px;
        top: 40px;
        background-color: green;
    }

    #second-column-second-row {
        width: 50px;
        height: 30px;
        top: 40px;
        left: 25px;
        background-color: pink;
    }

    #first-and-second-column-third-row {
        width: 75px;
        height: 40px;
        top: 70px;
        background-color: silver;
    }

    #third-column-all-rows {
        left: 75px;
        height: 110px;
        width: 25px;
        background-color: blue;
    }
</style>

<p>The test passes if it has the same visual effect as reference.</p>
<div id="grid">
    <div class="absolute" id="first-column-first-row"></div>
    <div class="absolute" id="second-column-first-row"></div>
    <div class="absolute" id="first-column-second-row"></div>
    <div class="absolute" id="second-column-second-row"></div>
    <div class="absolute" id="first-and-second-column-third-row"></div>
    <div class="absolute" id="third-column-all-rows"></div>
</div>
back to top