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-relpos-items-001-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-relpos-items-001-ref.html')
-rw-r--r-- | layout/reftests/css-grid/grid-relpos-items-001-ref.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/layout/reftests/css-grid/grid-relpos-items-001-ref.html b/layout/reftests/css-grid/grid-relpos-items-001-ref.html new file mode 100644 index 000000000..e45ba5cf0 --- /dev/null +++ b/layout/reftests/css-grid/grid-relpos-items-001-ref.html @@ -0,0 +1,61 @@ +<!DOCTYPE HTML> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<html><head> + <title>CSS Test: Testing layout of rel.pos. grid items</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1151316"> + <meta charset="utf-8"> + <style type="text/css"> +body,html { color:black; background:white; font-size:16px; padding:0; margin:0; } + +.grid { + height: 30px; + border: 3px solid; +} + +.c1 { background: grey; } +.r2 { -moz-transform: translate(-201px, -90px); } +.r3 { -moz-transform: translate(-10px, -40px); } +.r4 { -moz-transform: translate(70px, 40px); } + +span { + border: 1px solid; + display: inline-block; + width: 18px; + height: 28px; + vertical-align: top; +} +.abs { + background: lime; + position: absolute; + top: 116px; + left: 204px; + padding-left: 3px; + padding-top: 5px; + width: 18px; + height: 28px; + vertical-align: top; +} +.abs1 { + position: absolute; + top: -5px; + left: -11px; + width: 30px; + height: 36px; +} + </style> +</head> +<body> + +<div class="grid"> +<span class="c1">1</span> +<span class="abs r1"><iframe width="20" height="20" src="data:text/html,<body>F"></iframe></span> +<span class="abs r2"><iframe width="20" height="20" src="data:text/html,<body>2"></iframe></span> +<span class="abs r3" style="xheight:23px"><span class="abs1">r3</span></span> +<span class="abs r4" style="xheight:23px"><span class="abs1">r4</span></span> +</div> + +</body> +</html> |