Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / box-sizing-border-keeping-size-expected.html
blob9c5433286abfdb5f318a250272940308496f2a55
1 <!DOCTYPE HTML>
2 <style>
3 body {
4 margin: 0;
6 div {
7 position: absolute;
8 background-color: green;
10 .border-box {
11 width: 100px;
12 height: 100px;
13 box-sizing: border-box;
15 .content-box {
16 width: 60px;
17 height: 60px;
18 box-sizing: content-box;
19 border: blue solid 20px;
21 </style>
22 <div id="target1" class="content-box" style="top: 0px"></div>
23 <div id="target2" class="border-box" style="top: 200px"></div>