| Index: LayoutTests/paint/invalidation/spv2/align-self-change-grid.html
|
| diff --git a/LayoutTests/fast/repaint/align-self-change-grid.html b/LayoutTests/paint/invalidation/spv2/align-self-change-grid.html
|
| similarity index 69%
|
| copy from LayoutTests/fast/repaint/align-self-change-grid.html
|
| copy to LayoutTests/paint/invalidation/spv2/align-self-change-grid.html
|
| index b48419759ec0cb58494065ad4f851f1b9ac482be..b703ade700370193a204d3475b2524c608d62fa2 100644
|
| --- a/LayoutTests/fast/repaint/align-self-change-grid.html
|
| +++ b/LayoutTests/paint/invalidation/spv2/align-self-change-grid.html
|
| @@ -1,11 +1,17 @@
|
| +<!-- Based on fast/repaint/align-self-change-grid.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 DIV class='item1'",
|
| + "LayoutBlockFlow DIV",
|
| + "LayoutBlockFlow DIV class='item2'",
|
| +];
|
| +function paintInvalidationTest() {
|
| document.getElementsByClassName('item1')[0].style.alignSelf = 'stretch';
|
| document.getElementsByClassName('item2')[0].style.alignSelf = 'stretch';
|
| }
|
| -onload = runRepaintTest;
|
| +onload = runPaintInvalidationTest;
|
| </script>
|
| <style>
|
| body {
|
|
|