| Index: third_party/WebKit/LayoutTests/fast/repaint/align-self-change-grid-expected.html | 
| diff --git a/third_party/WebKit/LayoutTests/fast/repaint/align-self-change-grid-expected.html b/third_party/WebKit/LayoutTests/fast/repaint/align-self-change-grid-expected.html | 
| index 6e06b1d83651f2264894f3563967fe50f35cd7f4..6be197827b15b21fa7e6e856704419feccaf7c7e 100644 | 
| --- a/third_party/WebKit/LayoutTests/fast/repaint/align-self-change-grid-expected.html | 
| +++ b/third_party/WebKit/LayoutTests/fast/repaint/align-self-change-grid-expected.html | 
| @@ -18,7 +18,13 @@ body { | 
| .item2 { | 
| grid-row: 1; | 
| grid-column: 2; | 
| -  align-self: stretch; | 
| +  align-self: start; | 
| +  background-color: green; | 
| +} | 
| +.item3 { | 
| +  grid-row: 1; | 
| +  grid-column: 2; | 
| +  align-self: end; | 
| background-color: green; | 
| } | 
| </style> | 
| @@ -28,6 +34,9 @@ body { | 
| <div style="height: 50px"></div> | 
| </div> | 
| <div class="item2"> | 
| -    <div style="height: 50px"></div> | 
| +    <div style="height: 150px"></div> | 
| +  </div> | 
| +  <div class="item3"> | 
| +    <div style="height: 150px"></div> | 
| </div> | 
| </div> | 
|  |