| Index: LayoutTests/paint/invalidation/spv2/align-self-overflow-change-expected.html
|
| diff --git a/LayoutTests/fast/repaint/align-self-overflow-change.html b/LayoutTests/paint/invalidation/spv2/align-self-overflow-change-expected.html
|
| similarity index 64%
|
| copy from LayoutTests/fast/repaint/align-self-overflow-change.html
|
| copy to LayoutTests/paint/invalidation/spv2/align-self-overflow-change-expected.html
|
| index 56751d002d6396e480d15edfe31449508f20898b..2a25c8e534d958dd85f89da7deb159ea390364ec 100644
|
| --- a/LayoutTests/fast/repaint/align-self-overflow-change.html
|
| +++ b/LayoutTests/paint/invalidation/spv2/align-self-overflow-change-expected.html
|
| @@ -1,12 +1,4 @@
|
| <!DOCTYPE HTML>
|
| -<script src="resources/text-based-repaint.js"></script>
|
| -<script>
|
| -function repaintTest() {
|
| - document.getElementsByClassName('item1')[0].style.alignSelf = 'end safe';
|
| - document.getElementsByClassName('item2')[0].style.alignSelf = 'end safe';
|
| -}
|
| -onload = runRepaintTest;
|
| -</script>
|
| <style>
|
| body {
|
| margin: 0;
|
| @@ -21,13 +13,13 @@ body {
|
| .item1 {
|
| grid-row: 1;
|
| grid-column: 1;
|
| - align-self: end true;
|
| + align-self: end safe;
|
| background-color: green;
|
| }
|
| .item2 {
|
| grid-row: 2;
|
| grid-column: 1;
|
| - align-self: end true;
|
| + align-self: end safe;
|
| background-color: green;
|
| </style>
|
| <p style="height: 20px">Tests invalidation on align-self style change (just overflow). Passes if there is no red.</p>
|
|
|