| Index: LayoutTests/paint/invalidation/spv2/scroll-in-transformed-layer.html | 
| diff --git a/LayoutTests/fast/repaint/scroll-in-transformed-layer.html b/LayoutTests/paint/invalidation/spv2/scroll-in-transformed-layer.html | 
| similarity index 52% | 
| copy from LayoutTests/fast/repaint/scroll-in-transformed-layer.html | 
| copy to LayoutTests/paint/invalidation/spv2/scroll-in-transformed-layer.html | 
| index 150ccea0124fd3a1b36ad17642f03430eab7fe67..32cf414e8acb664f4b54dea04af46b4a093d9e04 100644 | 
| --- a/LayoutTests/fast/repaint/scroll-in-transformed-layer.html | 
| +++ b/LayoutTests/paint/invalidation/spv2/scroll-in-transformed-layer.html | 
| @@ -1,12 +1,15 @@ | 
| +<!-- Based on fast/repaint/scroll-in-transformed-layer.html --> | 
| <html> | 
| <head> | 
| -    <link rel="stylesheet" href="resources/default.css"></style> | 
| -    <script src="resources/text-based-repaint.js" type="text/javascript"></script> | 
| +    <link rel="stylesheet" href="../../../fast/repaint/resources/default.css"></style> | 
| +    <script src="resources/paint-invalidation-test.js" type="text/javascript"></script> | 
| <script type="text/javascript"> | 
| -        if (window.testRunner) | 
| -            testRunner.dumpAsTextWithPixelResults(); | 
| - | 
| -        function repaintTest() | 
| +        window.expectedPaintInvalidationObjects = [ | 
| +            "LayoutBlockFlow (positioned) DIV id='moveMe' class='absolute clipped rotated'", | 
| +            "LayoutBlockFlow (positioned) DIV class='absolute green'", | 
| +            "LayoutBlockFlow (positioned) DIV class='absolute red'", | 
| +        ]; | 
| +        function paintInvalidationTest() | 
| { | 
| var moveMeElement = document.getElementById('moveMe'); | 
| moveMeElement.scrollTop = 100; | 
| @@ -16,7 +19,7 @@ | 
| } | 
| </script> | 
| </head> | 
| -<body style="height:2000px;" onload="runRepaintTest()"> | 
| +<body style="height:2000px;" onload="runPaintInvalidationTest()"> | 
| <!-- You should see 1 green rectangle rotated in the output and no red. --> | 
| <div id="moveMe" style="top: 150px; left: 100px" class="absolute clipped"> | 
| <div class="absolute green" style="top: 100px; left: 50px"></div> | 
|  |