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

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

Issue 1709963002: [css-align] New CSS Value 'normal' for Self Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Getting back the FullScreen fix, missed during the rebase. 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-keeping-geometry-grid-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/align-self-change-keeping-geometry-grid-expected.html b/third_party/WebKit/LayoutTests/fast/repaint/align-self-change-keeping-geometry-grid-expected.html
index 80a247877fa3b5c72d013f70f6426177892b9a5a..3e04eaaf7a743a72ff0ae0cace4c9ae73d97e1d5 100644
--- a/third_party/WebKit/LayoutTests/fast/repaint/align-self-change-keeping-geometry-grid-expected.html
+++ b/third_party/WebKit/LayoutTests/fast/repaint/align-self-change-keeping-geometry-grid-expected.html
@@ -5,21 +5,28 @@ body {
}
#container {
display: grid;
- grid: 300px / 100px;
+ grid: 300px / 100px 100px;
width: 200px;
height: 300px;
background-color: red;
}
-.item {
+.item1 {
grid-row: 1;
grid-column: 1;
- align-self: stretch;
+ align-self: start;
+ height: 300px;
+ background-color: green;
+}
+.item2 {
+ grid-row: 1;
+ grid-column: 2;
+ align-self: start;
+ height: 300px;
background-color: green;
}
</style>
<p style="height: 20px">There should be no invalidations because align-self style change causes no visual change.</p>
<div id="container">
- <div class="item">
- <div style="height: 300px"></div>
- </div>
+ <div id="item1" class="item1"></div>
+ <div id="item2" class="item2"></div>
</div>

Powered by Google App Engine
This is Rietveld 408576698