File: grid-relpos-items-001-ref.html

package info (click to toggle)
firefox-esr 140.4.0esr-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,539,276 kB
  • sloc: cpp: 7,381,286; javascript: 6,388,710; ansic: 3,710,139; python: 1,393,780; xml: 628,165; asm: 426,918; java: 184,004; sh: 65,742; makefile: 19,302; objc: 13,059; perl: 12,912; yacc: 4,583; cs: 3,846; pascal: 3,352; lex: 1,720; ruby: 1,226; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10
file content (61 lines) | stat: -rw-r--r-- 1,477 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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 { transform: translate(-201px, -90px); }
.r3 { transform: translate(-10px, -40px); }
.r4 { 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>