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

Unified Diff: third_party/WebKit/LayoutTests/fast/alignment/overwrite-self-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
Index: third_party/WebKit/LayoutTests/fast/alignment/overwrite-self-alignment.html
diff --git a/third_party/WebKit/LayoutTests/fast/alignment/overwrite-self-alignment.html b/third_party/WebKit/LayoutTests/fast/alignment/overwrite-self-alignment.html
index ae298e74d40662708d8c3f87b4322dced8cdcbb9..4e38c25ba7e096af81aff66125b9bfe26a56cc26 100644
--- a/third_party/WebKit/LayoutTests/fast/alignment/overwrite-self-alignment.html
+++ b/third_party/WebKit/LayoutTests/fast/alignment/overwrite-self-alignment.html
@@ -2,12 +2,12 @@
<style>
.parent {
display: flex;
- justify-items: flex-end true;
+ justify-items: flex-end unsafe;
align-items: flex-start safe;
}
.parent .child {
display: flex;
- justify-self: flex-end true;
+ justify-self: flex-end unsafe;
align-self: flex-start safe;
}
#parentId {
@@ -35,7 +35,7 @@ shouldBeEqualToString("getComputedStyle(parent, '').getPropertyValue('justify-it
shouldBeEqualToString("getComputedStyle(parent, '').getPropertyValue('align-items')", "stretch");
var childOfDefaultParent = document.getElementById("childOfDefaultParent");
-shouldBeEqualToString("getComputedStyle(childOfDefaultParent, '').getPropertyValue('justify-self')", "flex-end true");
+shouldBeEqualToString("getComputedStyle(childOfDefaultParent, '').getPropertyValue('justify-self')", "flex-end unsafe");
shouldBeEqualToString("getComputedStyle(childOfDefaultParent, '').getPropertyValue('align-self')", "flex-start safe");
var childOfParentId = document.getElementById("childOfParentId");

Powered by Google App Engine
This is Rietveld 408576698