Other writing modes
This commit is contained in:
parent
79a3d05947
commit
bb61ad482b
1 changed files with 9 additions and 0 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue