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-row-gap-002.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-row-gap-002.html')
-rw-r--r-- | layout/reftests/css-grid/grid-row-gap-002.html | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/layout/reftests/css-grid/grid-row-gap-002.html b/layout/reftests/css-grid/grid-row-gap-002.html new file mode 100644 index 000000000..5618e560c --- /dev/null +++ b/layout/reftests/css-grid/grid-row-gap-002.html @@ -0,0 +1,97 @@ +<!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: 'grid-row-gap'</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1227099"> + <link rel="help" href="http://dev.w3.org/csswg/css-grid/#gutters"> + <link rel="match" href="grid-row-gap-002-ref.html"> + <style type="text/css"> +html,body { + color:black; background-color:white; font-size:16px; padding:0; margin:0; +} + +.grid { + display: grid; + grid-auto-flow: column; + grid-auto-rows: minmax(1px,auto); + grid-template-columns: 0px 7px; + border: 2px solid black; + float: left; +} + +.grid :last-child { background:grey; } +.grid :nth-child(2) { background:pink; } + +x { background: lime; width:7px; } + + </style> +</head> +<body> + +<script> +document.body.style.display = "none"; +var align = [ + "stretch", + "stretch end", + "stretch center", + "stretch end safe", + "stretch end unsafe", + "start safe", + "end safe", + "center safe", + "start unsafe", + "end unsafe", + "center unsafe", + "space-between", + "space-between end", + "space-between start", + "space-between end safe", + "space-around", + "space-around center", + "space-around right", + "space-around right safe", + "space-around left", + "space-evenly", + "space-evenly end", +]; +var rows = [ "0", "1", "2", "3", "8", "9" ]; +var heights = [ "auto", "0", "1", "5", "6" ]; +var gaps = [ "1", "2" ]; +for (var j = 0; j < align.length; ++j) { + // document.body.appendChild(document.createTextNode(align[j])); // for debugging + var chunk = document.createElement('div'); + chunk.setAttribute("style", "border:1px solid; padding:2px 10px; overflow:hidden"); + for (var c = 0; c < rows.length; ++c) { + for (var w = 0; w < heights.length; ++w) { + // set this to true if you want to see all tests + var run_test = heights[w] == "auto" || heights[w] < rows[c] || rows[c] == 0 || rows[c] == 1; + if (run_test) { + for (var g = 0; g < gaps.length; ++g) { + var grid = document.createElement('div'); + if (heights[w] != "auto") + grid.style.height = heights[w]+"px"; + grid.style.gridRowGap = gaps[g]+"px"; + grid.className = "grid"; + grid.style.alignContent = align[j]; + var span = document.createElement('span'); + span.style.gridRow = "1 / span " + rows[c]; + grid.appendChild(span); + for (var x = 0; x < rows[c]; ++x) { + grid.appendChild(document.createElement('x')); + } + chunk.appendChild(grid); + } + } + } + } + document.body.appendChild(chunk); +} +document.body.style.display = ""; +</script> + +</body> +</html> |