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
/
block-overflow-3.html
blob
201cc9eb7f67c32955bf6ac534c02dfae10ba044
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style
type
=
"text/css"
>
5
.separator
{
6
height
:
20px
;
7
background-color
:
blue
;
8
}
9
#overflow
{
10
overflow-y
:
scroll
;
11
height
:
200px
;
12
margin
:
20px 0
;
13
background-color
:
lightgreen
;
14
}
15
#child
{
16
height
:
160px
;
17
margin
:
40px 0
;
18
background-color
:
green
;
19
}
20
</style>
21
</head>
22
<body>
23
<div
class
=
"separator"
></div>
24
<div
id
=
"overflow"
>
25
<div
id
=
"child"
></div>
26
</div>
27
<div
class
=
"separator"
></div>
28
</body>
29
</html>