| Index: LayoutTests/paint/invalidation/spv2/box-sizing-border-keeping-size-expected.html
 | 
| diff --git a/LayoutTests/paint/invalidation/spv2/box-sizing-border-keeping-size-expected.html b/LayoutTests/paint/invalidation/spv2/box-sizing-border-keeping-size-expected.html
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..9c5433286abfdb5f318a250272940308496f2a55
 | 
| --- /dev/null
 | 
| +++ b/LayoutTests/paint/invalidation/spv2/box-sizing-border-keeping-size-expected.html
 | 
| @@ -0,0 +1,23 @@
 | 
| +<!DOCTYPE HTML>
 | 
| +<style>
 | 
| +body {
 | 
| +    margin: 0;
 | 
| +}
 | 
| +div {
 | 
| +    position: absolute;
 | 
| +    background-color: green;
 | 
| +}
 | 
| +.border-box {
 | 
| +    width: 100px;
 | 
| +    height: 100px;
 | 
| +    box-sizing: border-box;
 | 
| +}
 | 
| +.content-box {
 | 
| +    width: 60px;
 | 
| +    height: 60px;
 | 
| +    box-sizing: content-box;
 | 
| +    border: blue solid 20px;
 | 
| +}
 | 
| +</style>
 | 
| +<div id="target1" class="content-box" style="top: 0px"></div>
 | 
| +<div id="target2" class="border-box" style="top: 200px"></div>
 | 
| 
 |