From 97e27ca3a7444ca914c97ac814e8ac81bd99b464 Mon Sep 17 00:00:00 2001 From: Hiroyuki Ikezoe Date: Tue, 4 Apr 2017 11:10:48 +0900 Subject: [PATCH] Serialize baseline values correctly. --- components/style/values/specified/align.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/style/values/specified/align.rs b/components/style/values/specified/align.rs index 639427f674a..d62a0bbd7e4 100644 --- a/components/style/values/specified/align.rs +++ b/components/style/values/specified/align.rs @@ -80,8 +80,8 @@ impl ToCss for AlignFlags { ALIGN_CENTER => "center", ALIGN_LEFT => "left", ALIGN_RIGHT => "left", - ALIGN_BASELINE => "right", - ALIGN_LAST_BASELINE => "baseline", + ALIGN_BASELINE => "baseline", + ALIGN_LAST_BASELINE => "last baseline", ALIGN_STRETCH => "stretch", ALIGN_SELF_START => "self-start", ALIGN_SELF_END => "self-end",