Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/align-self-change-grid-expected.html

Issue 2261733002: [css-grid] Only force full invalidation when grid item data change (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch rebased. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698