diff options
author | corvid <corvid@lavabit.com> | 2009-12-20 21:09:57 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-12-20 21:09:57 +0000 |
commit | 80e2925a353d122cff1a42d86348228d1d8b182b (patch) | |
tree | fea4e71a01da71c1bc3a2f416097648d1a1b184b /src | |
parent | 6910376475469513dfcd05c39a8a36d672abd959 (diff) |
recognize text-{top,bottom} as vertical-align values
Diffstat (limited to 'src')
-rw-r--r-- | src/cssparser.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cssparser.cc b/src/cssparser.cc index 387066d6..85ae0610 100644 --- a/src/cssparser.cc +++ b/src/cssparser.cc @@ -106,7 +106,8 @@ static const char *const Css_text_decoration_enum_vals[] = { }; static const char *const Css_vertical_align_vals[] = { - "top", "bottom", "middle", "baseline", "sub", "super", NULL + "top", "bottom", "middle", "baseline", "sub", "super", "text-top", + "text-bottom", NULL }; static const char *const Css_white_space_vals[] = { |