Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / box-sizing-border-keeping-size.html
blobd13fee01e77e6fe3d4367519a6ac69dcd400d00c
1 <!-- Based on fast/repaint/box-sizing-border-keeping-size.html -->
2 <!DOCTYPE HTML>
3 <script src="resources/paint-invalidation-test.js"></script>
4 <script>
5 window.expectedPaintInvalidationObjects = [
6 "LayoutBlockFlow (positioned) DIV id='target1' class='content-box'",
7 "LayoutBlockFlow (positioned) DIV id='target2' class='border-box'",
8 ];
9 function paintInvalidationTest()
11 document.getElementById('target1').className = 'content-box';
12 document.getElementById('target2').className = 'border-box';
14 window.onload = runPaintInvalidationTest;
15 </script>
16 <style>
17 body {
18 margin: 0;
20 div {
21 position: absolute;
22 background-color: green;
24 .border-box {
25 width: 100px;
26 height: 100px;
27 box-sizing: border-box;
29 .content-box {
30 width: 60px;
31 height: 60px;
32 box-sizing: content-box;
33 border: blue solid 20px;
35 </style>
36 <div id="target1" class="border-box" style="top: 0px"></div>
37 <div id="target2" class="content-box" style="top: 200px"></div>