summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-grid/grid-item-mixed-baseline-004-ref.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/reftests/css-grid/grid-item-mixed-baseline-004-ref.html
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-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-ref.html')
-rw-r--r--layout/reftests/css-grid/grid-item-mixed-baseline-004-ref.html102
1 files changed, 102 insertions, 0 deletions
diff --git a/layout/reftests/css-grid/grid-item-mixed-baseline-004-ref.html b/layout/reftests/css-grid/grid-item-mixed-baseline-004-ref.html
new file mode 100644
index 000000000..43f343b0c
--- /dev/null
+++ b/layout/reftests/css-grid/grid-item-mixed-baseline-004-ref.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML>
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<html><head>
+ <meta charset="utf-8">
+ <title>Reference: 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="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;
+
+}
+.g1 {
+ border-bottom-width: 0;
+ grid-template-rows: 100px 0 0;
+ height:
+}
+.g2 {
+ border-top-width: 0;
+ grid-template-rows: 0 100px 100px;
+}
+
+.h {
+ visibility: hidden;
+ height: 0;
+}
+
+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; }
+
+.g2 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 g1">
+<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 h">A<br>B</span><span class="fb h">M<br>N</span><span class="fb h">X<br>Z</span>
+<span class="sfb h">A<br>B</span><span class="fb h">M<br>N</span><span class="fb s h">X<br>Z</span>
+</div>
+<div class="grid hl g2">
+<span class="sfb h ">A<br>B</span><span class="fb h">M<br>N</span><span class="fb s h">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>