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-intrinsic-ratio-normal-004-ref.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-intrinsic-ratio-normal-004-ref.html')
-rw-r--r-- | layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-004-ref.html | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-004-ref.html b/layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-004-ref.html new file mode 100644 index 000000000..439498bd7 --- /dev/null +++ b/layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-004-ref.html @@ -0,0 +1,145 @@ +<!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: ratio-preserving 'normal' stretch of image with zero ratio</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1315857"> + <style type="text/css"> +body,html { color:black; background:white; font:16px/1 monospace; padding:0; margin:0; } + +.grid { + display: grid; + float: left; + grid: auto-flow auto / 10px 30px 10px 30px 10px 30px 10px 30px auto auto auto auto; + grid-gap: 5px; + border:1px solid; +} +img:nth-child(1n) { background: blue; } +img:nth-child(2n) { background: grey; } +img:nth-child(3n) { background: tan; } +img:nth-child(4n) { background: black; } +img { + height: 20px; + border: 1px solid; +} +.jend { justify-self: end; } +.aend { align-self: end; } +.end { justify-self: end; align-self: end; } + </style> +</head> +<body> + +<div class="grid sz"> +<img> +<img> +<img class="jend"> +<img class="jend"> +<img class="aend"> +<img class="aend"> +<img class="end"> +<img class="end"> +<img> +<img class="jend"> +<img class="aend"> +<img class="end"> +</div> + +<div class="grid sz t2"> +<img> +<img> +<img class="jend"> +<img class="jend"> +<img class="aend"> +<img class="aend"> +<img class="end"> +<img class="end"> +<img> +<img class="jend"> +<img class="aend"> +<img class="end"> +</div> + +<div class="grid"> +<img> +<img> +<img class="jend"> +<img class="jend"> +<img class="aend"> +<img class="aend"> +<img class="end"> +<img class="end"> +</div> + +<div class="grid" style="grid:auto/auto auto"> +<img> +<img class="jend"> +<img class="aend"> +<img class="end"> +</div> + +<div class="grid" style="grid:minmax(auto,30px) 30px/auto auto"> +<img> +<img class="jend"> +<img class="aend"> +<img class="end"> +</div> + +<script> +var url = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="0px"><circle cx="50%" cy="50%" r="50%" fill="pink"/></svg>' +var imgSizes = +[ + ['8px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['8px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], + ['16px', '20px'], +]; +var imgs = document.querySelectorAll('img'); +for (var i = 0; i < imgs.length; ++i) { + var img = imgs[i]; + img.style.width = imgSizes[i][0]; + img.style.height = imgSizes[i][1]; + img.src = url; +} +</script> + +</body> +</html> |