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

Unified Diff: third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.html
diff --git a/third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.html b/third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.html
index b8fc5f8700042ce1ed820af337db77056707f1e3..1543050c7bc835630a25e2cfee886f7a6d989438 100644
--- a/third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.html
+++ b/third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.html
@@ -5,7 +5,7 @@
}
.parent .child {
display: flex;
- justify-content: flex-end true;
+ justify-content: flex-end unsafe;
align-content: center safe;
}
#parentId .child {
@@ -25,7 +25,7 @@
description('Test overwriting justify-content and align-content works as expected');
var childOfDefaultParent = document.getElementById("childOfDefaultParent");
-shouldBeEqualToString("getComputedStyle(childOfDefaultParent, '').getPropertyValue('justify-content')", "flex-end true");
+shouldBeEqualToString("getComputedStyle(childOfDefaultParent, '').getPropertyValue('justify-content')", "flex-end unsafe");
shouldBeEqualToString("getComputedStyle(childOfDefaultParent, '').getPropertyValue('align-content')", "center safe");
var childOfParentId = document.getElementById("childOfParentId");
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698