aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/inline.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/layout/inline.rs')
-rw-r--r--components/layout/inline.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/layout/inline.rs b/components/layout/inline.rs
index ee9980c4f1a..c7e7ee1027d 100644
--- a/components/layout/inline.rs
+++ b/components/layout/inline.rs
@@ -221,7 +221,7 @@ impl Line {
int_range_index! {
#[derive(Serialize)]
- #[doc = "The index of a fragment in a flattened vector of DOM elements."]
+ /// The index of a fragment in a flattened vector of DOM elements.
struct FragmentIndex(isize)
}
@@ -1658,7 +1658,7 @@ impl Flow for InlineFlow {
InlineFlow::set_inline_fragment_positions(
&mut self.fragments,
line,
- self.base.flags.text_align(),
+ self.base.text_align,
indentation,
line_index + 1 == line_count,
);
@@ -2053,6 +2053,7 @@ pub struct InlineFragmentNodeInfo {
}
bitflags! {
+ #[derive(Clone)]
pub struct InlineFragmentNodeFlags: u8 {
const FIRST_FRAGMENT_OF_ELEMENT = 0x01;
const LAST_FRAGMENT_OF_ELEMENT = 0x02;