repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
block
/
float
/
overlapping-floats-with-overflow-hidden.html
blob
b8d4b2359cf89f2dd4aee7a95645b89bd49ba1aa
1
<html>
2
<head>
3
<style>
4
#bottom {
5
float: left;
6
width:
520
px;
7
height:
356
px;
8
background-color:red;
9
}
10
11
#top {
12
float:left;
13
width:
520
px;
14
height:
356
px;
15
margin-top:-
356
px;
16
overflow:hidden;
17
background-color:green;
18
}
19
</style>
20
21
</head>
22
23
<body>
24
There should be no red visible below.
25
<div
style
=
"width:520px"
>
26
<div
id
=
"bottom"
></div>
27
<div
id
=
"top"
></div>
28
</div>
29
30
</body>
31
</html>