summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/layout-algorithm/grid-percent-rows-spanned-shrinkwrap-001.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-grid/layout-algorithm/grid-percent-rows-spanned-shrinkwrap-001.html')
-rw-r--r--testing/web-platform/tests/css/css-grid/layout-algorithm/grid-percent-rows-spanned-shrinkwrap-001.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-grid/layout-algorithm/grid-percent-rows-spanned-shrinkwrap-001.html b/testing/web-platform/tests/css/css-grid/layout-algorithm/grid-percent-rows-spanned-shrinkwrap-001.html
new file mode 100644
index 0000000000..0c51f08f82
--- /dev/null
+++ b/testing/web-platform/tests/css/css-grid/layout-algorithm/grid-percent-rows-spanned-shrinkwrap-001.html
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Grid Layout Test: Spanned Percentage Row, Shrinkwrap Height</title>
+<link rel="help" href="https://www.w3.org/TR/css-grid-1/#algo-overview">
+<link rel="match" href="references/grid-percent-rows-spanned-shrinkwrap-001-ref.html">
+<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
+<link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact">
+<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
+<style>
+ .grid {
+ display: grid;
+ float: left;
+ margin: 1em;
+ grid-template-rows: auto 20% auto;
+ grid-auto-flow: column;
+ justify-content: center;
+ border: solid silver;
+ font: 20px/1 Ahem;
+ color: transparent;
+ }
+ .grid > div {
+ background: blue;
+ }
+ .b {
+ grid-row: 3;
+ }
+ .c {
+ grid-row: span 3;
+ }
+
+ .ref {
+ grid-template-rows: 40px 20px 40px;
+ }
+</style>
+
+<p>Test passes if the two shapes below are identical
+
+<div class="grid">
+ <div class="a">X</div>
+ <div class="b">X</div>
+ <div class="c">X<br>X<br>X<br>X<br>X</div>
+</div>
+
+<div class="grid ref">
+ <div class="a">X</div>
+ <div class="b">X</div>
+ <div class="c">X<br>X<br>X<br>X<br>X</div>
+</div>