diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-002.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-002.html')
-rw-r--r-- | layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-002.html | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-002.html b/layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-002.html new file mode 100644 index 0000000000..8bd5d49860 --- /dev/null +++ b/layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-002.html @@ -0,0 +1,129 @@ +<!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: stretching intrinsic ratio item with 'normal' and/or 'stretch', with Automatic Minimum Size clamping</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1315383"> + <link rel="help" href="https://drafts.csswg.org/css-align-3/#valdef-justify-self-stretch"> + <link rel="match" href="grid-item-intrinsic-ratio-normal-001-ref.html"> + <style type="text/css"> +.grid { + display: inline-grid; + border: 1px solid; + margin: 5px; +} + +x { width:32px; height:2px; background:cyan; } +.w24 > x { width:24px; } +.w8 > x { width:8px; } +.w4 > x { width:4px; } + + </style> +</head> +<body> + +<div class="grid" style="grid: minmax(auto, 24px) minmax(auto, 10px) minmax(auto, 24px) / repeat(7, minmax(auto, 32px)); grid-column-gap: 10px;"> +<div style="height:24px; width:2px; background:cyan; grid-row:1"></div> +<div style="height:10px; grid-row:2; grid-column: span 7"></div> +<div style="height:24px; grid-row:3"></div> +<x style="grid-row:4"></x> +</div> + +<br> + +<div class="grid w24" style="grid: minmax(auto, 32px) minmax(auto, 10px) minmax(auto, 32px) / repeat(7, minmax(auto, 24px)); grid-column-gap: 10px;"> +<div style="height:32px; width:2px; background:cyan; grid-row:1"></div> +<div style="height:10px; grid-row:2; grid-column: span 7"></div> +<div style="height:32px; grid-row:3"></div> +<x style="grid-row:4"></x> +</div> + +<br> + +<div class="grid w4" style="grid: minmax(auto, 8px) minmax(auto, 10px) minmax(auto, 8px) / repeat(7, minmax(auto, 4px)); grid-column-gap:32px; "> +<div style="height:8px; width:2px; background:cyan; grid-row:1"></div> +<div style="height:10px; grid-row:2; grid-column: span 7"></div> +<div style="height:8px; grid-row:3"></div> +<x style="grid-row:4"></x> +</div> + +<br> + +<div class="grid w4" style="grid: minmax(auto, 32px) minmax(auto, 10px) minmax(auto, 32px) / repeat(7, minmax(auto, 4px)); grid-column-gap:32px; "> +<div style="height:32px; width:2px; background:cyan; grid-row:1"></div> +<div style="height:10px; grid-row:2; grid-column: span 7"></div> +<div style="height:32px; grid-row:3"></div> +<x style="grid-row:4"></x> +</div> + +<br> + +<div class="grid w8" style="grid: repeat(3, minmax(auto, 4px)) / repeat(7, minmax(auto, 8px)); grid-gap:8px; "> +<div style="height:4px; width:2px; background:cyan; grid-row:1"></div> +<div style="height:10px; grid-row:2; grid-column: span 7"></div> +<div style="height:4px; grid-row:3"></div> +<x style="grid-row:4"></x> +</div> + +<br> + +<div class="grid" style="grid: repeat(3, minmax(auto, 8px)) / repeat(7, minmax(auto, 32px)); grid-gap:16px; "> +<div style="height:4px; width:2px; background:cyan; grid-row:1"></div> +<div style="height:10px; grid-row:2; grid-column: span 7"></div> +<div style="height:4px; grid-row:3"></div> +<x style="grid-row:4"></x> +</div> + +<br> + +<script> +var url = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAEElEQVQoz2NgGAWjYBTAAAADEAABaJFtwwAAAABJRU5ErkJggg%3D%3D"; +var grids = document.querySelectorAll('.grid'); +var js = [ "normal", "start", "center", "stretch" ]; +var as = [ "normal", "start", "center", "stretch" ]; +for (var i = 0; i < grids.length; ++i) { + for (var j = 0; j < js.length; j++) { + for (var a = 0; a < as.length; a++) { + if (as[a] != "normal" && as[a] != "stretch" && + js[j] != "normal" && js[j] != "stretch") { + continue; + } + var img = document.createElement('img'); + img.style.alignSelf = as[a]; + img.style.justifySelf = js[j]; + img.src = url; + img.setAttribute('title', as[a] + ' / ' + js[j]); + grids[i].appendChild(img); + } + } + for (var j = 0; j < js.length; j++) { + for (var a = 0; a < as.length; a++) { + if (as[a] != "normal" && as[a] != "stretch" && + js[j] != "normal" && js[j] != "stretch") { + continue; + } + var x = document.createElement('x'); + grids[i].appendChild(x); + } + } +} +</script> + +<!-- For generating image size results in -ref file +<script> +document.body.clientHeight; +var imgs = document.querySelectorAll('img'); +var s = ' [\n'; +for (var i = 0; i < imgs.length; ++i) { + s += " ['"+ imgs[i].width + "px', '" + imgs[i].height + "px'],\n"; +} +s += ']'; +console.log(s) +</script> +--> + +</body> +</html> |