mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
build(deps): bump bitflags from 1.3.2 to 2.3.1 (#30273)
Bumps [bitflags](https://github.com/bitflags/bitflags) from 1.3.2 to 2.3.1. - [Release notes](https://github.com/bitflags/bitflags/releases) - [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md) - [Commits](https://github.com/bitflags/bitflags/compare/1.3.2...2.3.1)
This commit is contained in:
parent
6eb3e16578
commit
e9281e2eda
18 changed files with 110 additions and 113 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue