| Index: LayoutTests/paint/invalidation/spv2/float-new-in-block.html | 
| diff --git a/LayoutTests/paint/invalidation/spv2/float-new-in-block.html b/LayoutTests/paint/invalidation/spv2/float-new-in-block.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..8706db8e61bf4a6684b84a6fb83011432e99a4e4 | 
| --- /dev/null | 
| +++ b/LayoutTests/paint/invalidation/spv2/float-new-in-block.html | 
| @@ -0,0 +1,17 @@ | 
| +<!-- Based on fast/repaint/float-new-in-block.html --> | 
| +<script src="resources/paint-invalidation-test.js" type="text/javascript" charset="utf-8"></script> | 
| +<script> | 
| +    window.expectedPaintInvalidationObjects = [ | 
| +        "LayoutBlockFlow DIV", | 
| +        "LayoutBlockFlow (floating) DIV id='target'", | 
| +    ]; | 
| +    function paintInvalidationTest() | 
| +    { | 
| +        document.getElementById("target").style.removeProperty("display"); | 
| +    } | 
| +</script> | 
| +<body onload="runPaintInvalidationTest()"> | 
| +    <div style="height: 20px; background-color: lightblue;"> | 
| +        <div id="target" style="display: none; float: left; width: 100px; height: 100px; background-color: green;"></div> | 
| +    </div> | 
| +</body> | 
|  |