diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/css-grid/grid-item-mixed-baseline-004.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/css-grid/grid-item-mixed-baseline-004.html')
-rw-r--r-- | layout/reftests/css-grid/grid-item-mixed-baseline-004.html | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/layout/reftests/css-grid/grid-item-mixed-baseline-004.html b/layout/reftests/css-grid/grid-item-mixed-baseline-004.html new file mode 100644 index 000000000..c17456c1f --- /dev/null +++ b/layout/reftests/css-grid/grid-item-mixed-baseline-004.html @@ -0,0 +1,82 @@ +<!DOCTYPE HTML> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<html><head> + <meta charset="utf-8"> + <title>CSS Grid Test: mixed align-content/self:baseline/last baseline in fragmentated grid</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1256429"> + <link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-content"> + <link rel="match" href="grid-item-mixed-baseline-004-ref.html"> + <link rel="stylesheet" type="text/css" href="support/ahem.css"> + <style type="text/css"> +html,body { + color:black; background-color:white; font-size:16px; font-family: Ahem; padding:0; margin:0; +} + +.columns { + position:relative; + -moz-columns: 5; + -ms-columns: 5; + -webkit-columns: 5; + columns: 5; + -moz-column-fill: auto; + -ms-column-fill: auto; + -webkit-column-fill: auto; + column-fill: auto; + border: 2px dashed; + margin-bottom: 5px; + height: 120px; +} + +.grid { + display: grid; + grid: 100px / repeat(3, auto); + grid-auto-rows: 100px; + border: 2px solid; + margin: 1px; +} + +span { + background: lime; + display: inline-block; + border: 1px solid black; +} + +span:nth-child(1) { font-size:32px; } +span:nth-child(2) { font-size:12px; } +span:nth-child(3) { font-size:10px; } +span:nth-child(4) { font-size:24px; } + +.pbs { padding-block-start: 15px; margin-block-start: 5px; } +.pbe { padding-block-end: 7px; margin-block-end: 3px; } + +.fb { align-content:baseline; align-self:self-start; justify-self:self-start; } +.lb { align-content:last baseline; align-self:self-end; justify-self:self-end; } +.s { align-self:stretch; justify-self:stretch; } + +.sfb { align-self:baseline; } +.slb { align-self:last baseline; align-content:self-end; } + +.hl { writing-mode: horizontal-tb; direction:ltr; } +.hr { writing-mode: horizontal-tb; direction:rtl; } +.vl { writing-mode: vertical-lr; text-orientation: sideways; } +.vr { writing-mode: vertical-rl; text-orientation: sideways; } +.vlr { writing-mode: vertical-lr; direction:rtl; text-orientation: sideways; } +.vrl { writing-mode: vertical-rl; direction:ltr; text-orientation: sideways; } + +</style> +</head> +<body> + +<div class="columns"> +<div class="grid hl"> +<span class="sfb">A<br>B</span><span class="fb">M<br>N</span><span class="fb s">X<br>Z</span> +<span class="sfb">A<br>B</span><span class="fb">M<br>N</span><span class="fb">X<br>Z</span> +<span class="sfb">A<br>B</span><span class="fb">M<br>N</span><span class="fb s">X<br>Z</span> +</div> +</div> + +</body> +</html> |