| Index: LayoutTests/paint/invalidation/spv2/outline-child-repaint.html
|
| diff --git a/LayoutTests/fast/repaint/outline-child-repaint.html b/LayoutTests/paint/invalidation/spv2/outline-child-repaint.html
|
| similarity index 72%
|
| copy from LayoutTests/fast/repaint/outline-child-repaint.html
|
| copy to LayoutTests/paint/invalidation/spv2/outline-child-repaint.html
|
| index 292a79b09ec297dc829173295c64234464b04934..b91f597d940cfccbb3bd3702e783b7c9e4f3b3da 100644
|
| --- a/LayoutTests/fast/repaint/outline-child-repaint.html
|
| +++ b/LayoutTests/paint/invalidation/spv2/outline-child-repaint.html
|
| @@ -1,8 +1,13 @@
|
| +<!-- Based on fast/repaint/outline-child-repaint.html -->
|
| <html>
|
| <head>
|
| - <script src="resources/text-based-repaint.js" type="text/javascript"></script>
|
| + <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
|
| <script type="text/javascript">
|
| - function repaintTest()
|
| + window.expectedPaintInvalidationObjects = [
|
| + "LayoutBlockFlow (positioned) DIV id='container'",
|
| + "LayoutBlockFlow DIV class='outlined'",
|
| + ];
|
| + function paintInvalidationTest()
|
| {
|
| var container = document.getElementById('container');
|
| container.style.top = "250px";
|
| @@ -32,7 +37,7 @@
|
| }
|
| </style>
|
| </head>
|
| -<body onload="runRepaintTest();">
|
| +<body onload="runPaintInvalidationTest();">
|
| <p>
|
| This is a repaint test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=22159">https://bugs.webkit.org/show_bug.cgi?id=22159</a>
|
| Repaint issue with outlines in child objects</i>.
|
|
|