repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git]
/
layout
/
reftests
/
abs-pos
/
table-footer-group-2.html
blob
b5d70f3ef77db49ca26f981cfc398082f829a069
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style>
5
#rel {
6
position: relative;
7
margin:
0
;
8
padding:
0
;
9
}
10
.abs {
11
position: absolute;
12
margin:
0
;
13
padding:
0
;
14
top:
25
px;
15
left:
25
px;
16
width:
50
px;
17
height:
50
px;
18
background-color: green;
19
}
20
#bad {
21
background-color: blue;
22
}
23
</style>
24
</head>
25
<body>
26
The green square should not completely cover the blue square.
27
<div
class
=
"abs"
id
=
"bad"
></div>
28
<div
style
=
"position: relative"
>
29
<table>
30
<tfoot
id
=
"rel"
>
31
<tr>
32
<td>
33
<div
class
=
"abs"
></div>
34
</td>
35
</tr>
36
</tfoot>
37
</table>
38
</div>
39
</body>
40
</html>