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
/
css
/
vertical-lr-bfc-auto-margins-beside-float-expected.html
blob
8215c1433c153396d301f063bf768af8f06ef935
1
<!DOCTYPE
html
>
2
<style>
3
#container {
4
width:
200
px; height:
50
px;
5
background-color: orange;
6
position: relative;
7
}
8
9
.square {
10
position: absolute;
11
top:
0
;
12
left:
0
;
13
width:
50
px;
14
height:
50
px;
15
background-color: blue;
16
}
17
18
.second {
19
left:
100
px;
20
}
21
</style>
22
<p>
You should see four equally sized squares below. Two blue, and two orange.
</p>
23
<div
id
=
"container"
>
24
<div
class
=
"square"
></div>
25
<div
class
=
"second square"
></div>
26
</div>