blob: 48d8725801b6996c22e0002e1931d0987ede9555 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Box Alignment Test: Synthesized baseline grid container</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-rules">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-baselines">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-items-property">
<meta name="flags" content="ahem">
<meta name="assert" content="This test check the synthesized of a grid container if it has no items (it should use the grid container margin box) or if the items have no baseline (in that case it should use the grid item's border box).">
<style>
.wrapper {
border: solid thick;
position: relative;
width: 300px;
height: 150px;
margin: 10px;
}
canvas {
width: 100px;
height: 100px;
background: blue;
}
.magenta-dotted-border {
border: 5px dotted magenta;
}
.border-padding-margin {
border: 10px solid cyan;
padding: 15px;
margin: 20px 0px;
background: yellow;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<body onload="checkLayout('.wrapper')">
<div id="log"></div>
<div class="wrapper">
<canvas></canvas>
<div style="display: inline-grid;" class="border-padding-margin"
data-offset-y="30"></div>
</div>
<div class="wrapper">
<canvas></canvas>
<div style="display: inline-block;" class="magenta-dotted-border"
data-offset-y="5">
<div style="display: inline-grid;" class="border-padding-margin"
data-offset-y="30"></div>
</div>
</div>
<div class="wrapper">
<canvas></canvas>
<div style="display: inline-block;" class="magenta-dotted-border"
data-offset-y="0">
<div style="display: grid;" class="border-padding-margin"
data-offset-y="25"></div>
</div>
</div>
<div class="wrapper">
<canvas></canvas>
<div style="display: inline-grid;" class="magenta-dotted-border"
data-offset-y="25">
<div class="border-padding-margin" data-offset-y="50"></div>
</div>
</div>
<div class="wrapper">
<canvas></canvas>
<div style="display: inline-block;" class="magenta-dotted-border"
data-offset-y="25">
<div style="display: grid;"
data-offset-y="30">
<div class="border-padding-margin" data-offset-y="50"></div>
</div>
</div>
</div>
<div class="wrapper" style="display: flex; align-items: baseline;">
<canvas></canvas>
<div style="display: inline-grid;" class="magenta-dotted-border"
data-offset-y="25">
<div class="border-padding-margin" data-offset-y="50"></div>
</div>
</div>
<div class="wrapper" style="display: flex; align-items: baseline;">
<canvas></canvas>
<div style="display: grid;" class="magenta-dotted-border"
data-offset-y="25">
<div class="border-padding-margin" data-offset-y="50"></div>
</div>
</div>
</body>