Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / sub-pixel / column-clipping.html
blob828c9abdea294f232e5f86882bde4473f23c5748
1 <!DOCTYPE html>
2 <html>
3 <style>
4 body > div {
5 -webkit-column-count: 2;
6 column-count: 2;
7 column-fill: auto;
8 width: 51px;
9 position: absolute;
10 left: 0px;
11 top: 0px;
13 div > div {
14 width: 10px;
15 height: 10px;
16 background-color: green;
17 border: 1px solid black;
18 position: relative;
20 </style>
21 <body>
22 <div>
23 <div></div>
24 <div></div>
25 </div>
26 </body>