Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / nth-last-child-recalc-expected.html
blobbc2d0c1e8ec0c05ce86a02ee057f1de1e81076dd
1 <!doctype html>
2 <html>
3 <style>
4 a {
5 float: left;
6 background-color: green;
7 width: 100px;
8 height: 100px;
9 margin: 0 13px 13px 0;
11 .lastInRow {
12 margin-right: 0;
14 div {
15 width: 370px;
17 </style>
18 <body>
19 <p>This tests that we get nth-child and nth-last-child correct on style recalc. There should be 2 identical rows of green boxes below.</p>
20 <div>
21 <a></a>
22 <a></a>
23 <a class="lastInRow"></a>
24 <a></a>
25 <a></a>
26 <a class="lastInRow"></a>
27 </div>