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
/
positioning
/
positioned-movement-layout-when-margin-changes-expected.html
blob
b6eaf2ba021941ef1f5f9f381f1bbd40f7101eec
1
<!DOCTYPE
html
>
2
<style>
3
.positioned {
4
top:
0
;
5
position: absolute;
6
width:
100
px;
7
height:
100
px;
8
background-color: green;
9
margin-left:
100
%;
10
}
11
.normal {
12
max-width:
100
%;
13
display: block;
14
height: auto;
15
background-color: blue;
16
}
17
</style>
18
<p>
Change in margin should move a positioned object.
</p>
19
<ul
id
=
"container"
>
20
<li
class
=
"positioned"
>
21
<div
class
=
"normal"
>
22
</li>
23
</ul>
24