Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positioning / positioned-movement-layout-when-margin-changes-expected.html
blobb6eaf2ba021941ef1f5f9f381f1bbd40f7101eec
1 <!DOCTYPE html>
2 <style>
3 .positioned {
4 top: 0;
5 position: absolute;
6 width: 100px;
7 height: 100px;
8 background-color: green;
9 margin-left: 100%;
11 .normal {
12 max-width: 100%;
13 display: block;
14 height: auto;
15 background-color: blue;
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>