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-justify-content-002-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-justify-content-002-ref.html')
-rw-r--r-- | layout/reftests/css-grid/grid-justify-content-002-ref.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/layout/reftests/css-grid/grid-justify-content-002-ref.html b/layout/reftests/css-grid/grid-justify-content-002-ref.html new file mode 100644 index 000000000..996ef2a9d --- /dev/null +++ b/layout/reftests/css-grid/grid-justify-content-002-ref.html @@ -0,0 +1,62 @@ +<!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: Testing track distribution rounding errors</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1151214"> + <style type="text/css"> +html,body { + color:black; background-color:white; font-size:16px; padding:0; margin:0; +} + +.grid { + display: grid; + grid-template-rows: 7px; + border: 1px solid blue; + background: black; +} + +x { background: lime; height:7px; } + + </style> +</head> +<body> + +<script> +var justify = [ "" ]; +var cols = [ "151", "1" ]; +var widths = [ "151", "152", "153", "154", "155", "156", "157", "158", "159", + "160", "161", "301", "302", "303", "304", "305", "306", "307", + "308", "309", "310", "311" ]; +for (var c = 0; c < cols.length; ++c) { + var chunk = document.createElement('div'); + chunk.setAttribute("style", "float:left; margin:1px;"); + for (var j = 0; j < justify.length; ++j) { + for (var w = 0; w < widths.length; ++w) { + var grid = document.createElement('div'); + grid.style.width = widths[w]+"px"; + if (widths[w] > 300) { + grid.style.gridTemplateColumns = "2px " + (widths[w]-4) + "px 2px"; + } else { + grid.style.gridTemplateColumns = "1px " + (widths[w]-2) + "px 1px"; + } + grid.className = "grid " + justify[j]; + if (cols[c] > 1) { + var x = document.createElement('x'); + x.style.gridColumn = "2 / 3"; + x.setAttribute('col', cols[c]) + grid.appendChild(x); + } + chunk.appendChild(grid); + } + } + document.body.appendChild(chunk); +} +document.body.style.display = ""; +</script> + +</body> +</html> |