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