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