Index: third_party/WebKit/LayoutTests/fast/repaint/justify-self-change-keeping-geometry-expected.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/justify-self-change-keeping-geometry-expected.html b/third_party/WebKit/LayoutTests/fast/repaint/justify-self-change-keeping-geometry-expected.html |
index a43c699639d0d46e6df674b451e828b91e9ee5f6..2d1043b64b69bd9e4ddb170dc152bf66d21fd2af 100644 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/justify-self-change-keeping-geometry-expected.html |
+++ b/third_party/WebKit/LayoutTests/fast/repaint/justify-self-change-keeping-geometry-expected.html |
@@ -5,30 +5,27 @@ body { |
} |
#container { |
display: grid; |
- grid: 150px 150px / 100px 100px; |
+ grid: 300px / 100px 100px; |
width: 200px; |
height: 300px; |
+ background-color: red; |
} |
.item1 { |
grid-row: 1; |
grid-column: 1; |
- justify-self: left; |
+ justify-self: start; |
background-color: green; |
- width: 50px; |
+ width: 100px; |
} |
.item2 { |
grid-row: 1; |
grid-column: 2; |
- justify-self: right; |
+ justify-self: start; |
background-color: green; |
- width: 50px; |
+ width: 100px; |
</style> |
-<p style="height: 20px">Tests invalidation on justify-self style change. Passes if there is no red.</p> |
+<p style="height: 20px">There should be no invalidations because justify-self style change causes no visual change.</p> |
<div id="container"> |
- <div class="item1"> |
- <div style="height: 150px"></div> |
- </div> |
- <div class="item2"> |
- <div style="height: 100px"></div> |
- </div> |
+ <div class="item1"></div> |
+ <div class="item2"></div> |
</div> |