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
Backed out changeset 39e6a7e77cfb (bug 1927808) for causing multiple failures. CLOSED...
[gecko.git]
/
layout
/
reftests
/
margin-collapsing
/
fieldset-child-1.html
blob
a9e7a7820e3bd72d06f4c388a5123786ded393c5
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style
type
=
"text/css"
>
5
.separator
{
6
height
:
20px
;
7
background-color
:
green
;
8
}
9
fieldset
{
10
margin
:
0
;
11
padding
:
0
;
12
border
:
none
;
13
background-color
:
lightgreen
;
14
}
15
#child
{
16
height
:
40px
;
17
margin
:
20px 0
;
18
background-color
:
green
;
19
}
20
</style>
21
</head>
22
<body>
23
<div
class
=
"separator"
></div>
24
<fieldset>
25
<div
id
=
"child"
></div>
26
</fieldset>
27
<div
class
=
"separator"
></div>
28
</body>
29
</html>