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-column-gap-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-column-gap-002-ref.html')
-rw-r--r-- | layout/reftests/css-grid/grid-column-gap-002-ref.html | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/layout/reftests/css-grid/grid-column-gap-002-ref.html b/layout/reftests/css-grid/grid-column-gap-002-ref.html new file mode 100644 index 000000000..070d056ce --- /dev/null +++ b/layout/reftests/css-grid/grid-column-gap-002-ref.html @@ -0,0 +1,90 @@ +<!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: 'grid-column-gap'</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1176792"> + <style type="text/css"> +body,html { color:black; background:white; font-size:16px; padding:0; margin:0; } + +.grid { + display: block; + border: dashed blue; + float: left; + clear: left; +} + +.c1 { grid-column: 1 / span 2; min-width:40px; } +.r1 { grid-column: 2 / span 3; min-width:70px; margin-left:41px; } +.c3 { grid-column: 3 / span 1; min-width:0; margin-left:138px; } + +span { + display: block; + float: left; + clear: left; + background: gray; + border-style: solid; + border-width: 1px 3px 5px 7px; + padding: 1px 3px; + margin: 1px 5px; + justify-self: flex-start; +} + +x { display:inline-block; width:10px; height:18px; } + </style> +</head> +<body> + +<div class="grid"> +<span class="c1" style="width:43px"><x></x></span> +<span class="r1" style="width:79px"><x></x></span> +</div> + +<div class="grid"> +<span class="c1" style="width:49px"><x></x></span> +<span class="r1" style="margin-left:44px; width:88px"><x></x></span> +<span class="c3" style="margin-left:83px; "><x></x></span> +</div> + +<div class="grid"> +<span class="c1" style="width:43px"><x></x></span> +<span class="r1" style="width:79px"><x></x></span> +<span class="r1" style="width:79px"><x></x></span> +<span class="r1" style="width:79px"><x></x></span> +</div> +<div class="grid" style=""> +<span class="c1" style="width:413px"><x></x></span> +<span class="r1" style="margin-left:44px; width:452px"><x></x></span> +<span class="c3" style="margin-left:447px;"><x></x></span> +</div> + +<div class="grid" style="width:500px;"> +<span class="c1" style="width:223px"><x></x></span> +<span class="r1" style="margin-left:131px; width:348px"><x></x></span> +<span class="r1" style="margin-left:131px; width:348px"><x></x></span> +<span class="r1" style="margin-left:131px; width:348px"><x></x></span> +</div> + +<div class="grid" style=""> +<span class="c1" style="width:513px"><x></x></span> +<span class="r1" style="margin-left:44px; width:552px"><x></x></span> +<span class="c3" style="margin-left:547px;"><x></x></span> +</div> + +<div class="grid"> +<span class="c1" style="width:100px"><x></x></span> +<span class="r1" style="margin-left:117px; margin-right:11px; width:300px"><x></x></span> +<span class="c3" style="margin-left:228px; width:83px"><x></x></span> +</div> + +<div class="grid"> +<span class="c1" style="width:100px; border-sizing:border-box"><x></x></span> +<span class="r1" style="margin-left:117px; margin-right:11px; width:300px; border-sizing:border-box"><x></x></span> +<span class="c3" style="margin-left:228px; width:83px"><x></x></span> +</div> + +</body> +</html> |