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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/justify-self-change-keeping-geometry-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/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>

Powered by Google App Engine
This is Rietveld 408576698