mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +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
|
@ -28,5 +28,10 @@ bitflags! {
|
|||
/// This bit is propagated to all children of line participants.
|
||||
/// It is currently used by ruby to make its content unbreakable.
|
||||
const SHOULD_SUPPRESS_LINEBREAK = 1 << 1,
|
||||
|
||||
/// A flag used to mark text that that has text-combine-upright.
|
||||
///
|
||||
/// This is used from Gecko's layout engine.
|
||||
const IS_TEXT_COMBINED = 1 << 2,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue