mirror of
https://github.com/servo/servo.git
synced 2025-10-01 17:19:16 +01:00
stylo: Set the NS_STYLE_IS_TEXT_COMBINED flag.
This should fix at least layout/reftests/writing-mode/1135361-ruby-justify-1.html
This commit is contained in:
parent
9b276565f8
commit
b576229567
3 changed files with 11 additions and 0 deletions
|
@ -1742,6 +1742,9 @@ pub extern "C" fn Servo_ComputedValues_GetStyleBits(values: ServoStyleContextBor
|
|||
if flags.contains(SHOULD_SUPPRESS_LINEBREAK) {
|
||||
result |= structs::NS_STYLE_SUPPRESS_LINEBREAK as u64;
|
||||
}
|
||||
if flags.contains(IS_TEXT_COMBINED) {
|
||||
result |= structs::NS_STYLE_IS_TEXT_COMBINED as u64;
|
||||
}
|
||||
result
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue