| Index: LayoutTests/paint/invalidation/spv2/margin.html
|
| diff --git a/LayoutTests/fast/repaint/margin.html b/LayoutTests/paint/invalidation/spv2/margin.html
|
| similarity index 58%
|
| copy from LayoutTests/fast/repaint/margin.html
|
| copy to LayoutTests/paint/invalidation/spv2/margin.html
|
| index 7184b5ecb37a87566a496d2624a4c67e32198028..aa0cfa296b5c84d36bdcf63ddb0f1192b8cc5002 100644
|
| --- a/LayoutTests/fast/repaint/margin.html
|
| +++ b/LayoutTests/paint/invalidation/spv2/margin.html
|
| @@ -1,13 +1,17 @@
|
| +<!-- Based on fast/repaint/margin.html -->
|
| <!DOCTYPE HTML>
|
| -<script src="resources/text-based-repaint.js"></script>
|
| +<script src="resources/paint-invalidation-test.js"></script>
|
| <script>
|
| -function repaintTest()
|
| +window.expectedPaintInvalidationObjects = [
|
| + "LayoutBlockFlow (positioned) DIV id='target'",
|
| +];
|
| +function paintInvalidationTest()
|
| {
|
| // Margin change will visually move the content of the div.
|
| // Should repaint the old position and the new position.
|
| document.getElementById('target').style.margin = '20px';
|
| }
|
| -window.onload = runRepaintTest;
|
| +window.onload = runPaintInvalidationTest;
|
| </script>
|
| <style>
|
| body {
|
|
|