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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html

Issue 1497403002: [css-align] Overflow alignment value 'true' renamed to 'unsafe' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed repaint tests issues. Created 5 years 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/css-grid-layout/grid-content-alignment-overflow.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html
index 9317634ad8bb709264fa4b96515b7454c71b0ea6..f714d117b3f8de246711aa78812e7acd0fc4147d 100644
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html
@@ -33,9 +33,9 @@ body {
justify-content: center safe;
}
-.centerTrue {
- align-content: center true;
- justify-content: center true;
+.centerUnsafe {
+ align-content: center unsafe;
+ justify-content: center unsafe;
}
.end {
@@ -48,9 +48,9 @@ body {
justify-content: end safe;
}
-.endTrue {
- align-content: end true;
- justify-content: end true;
+.endUnsafe {
+ align-content: end unsafe;
+ justify-content: end unsafe;
}
</style>
@@ -69,7 +69,7 @@ body {
</div>
<div style="position: relative">
- <div class="grid overflowHeight centerTrue" data-expected-width="200" data-expected-height="150">
+ <div class="grid overflowHeight centerUnsafe" data-expected-width="200" data-expected-height="150">
<div class="firstRowFirstColumn" data-offset-x="50" data-offset-y="-25" data-expected-width="50" data-expected-height="100"></div>
<div class="secondRowFirstColumn" data-offset-x="50" data-offset-y="75" data-expected-width="50" data-expected-height="100"></div>
<div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="-25" data-expected-width="50" data-expected-height="100"></div>
@@ -105,7 +105,7 @@ body {
</div>
<div style="position: relative">
- <div class="grid overflowHeight endTrue" data-expected-width="200" data-expected-height="150">
+ <div class="grid overflowHeight endUnsafe" data-expected-width="200" data-expected-height="150">
<div class="firstRowFirstColumn" data-offset-x="100" data-offset-y="-50" data-expected-width="50" data-expected-height="100"></div>
<div class="secondRowFirstColumn" data-offset-x="100" data-offset-y="50" data-expected-width="50" data-expected-height="100"></div>
<div class="firstRowSecondColumn" data-offset-x="150" data-offset-y="-50" data-expected-width="50" data-expected-height="100"></div>

Powered by Google App Engine
This is Rietveld 408576698