Other writing modes

This commit is contained in:
Georgy Litvinov 2020-08-03 15:00:22 +02:00
parent 79a3d05947
commit bb61ad482b

View file

@ -150,6 +150,15 @@ public class FrameStyleParser extends StyleWithPropertiesParser {
if (s != null) {
if (s.equals("bt-lr")) {
props.addProperty("writing-mode", "sideways-lr");
}
}
} else if (bInherit || style.hasProperty(XMLString.STYLE_WRITING_MODE)){
s = style.getAbsoluteProperty(XMLString.STYLE_WRITING_MODE);
if (s != null) {
if (s.equals("tb-rl")) {
props.addProperty("writing-mode", "vertical-rl");
} else if (s.equals("lr-tb")) {
props.addProperty("writing-mode", "horizontal-tb");
}
}
}