mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
rustdoc: Fix errors in components
and ports
(#31654)
* Fixed warnings in components/gfx/text/shaping/harfbuzz-rs components/layout_2020/fragment_tree ports/servoshell/minibrowser.rs * Fixed warnings in components/gfx/text/shaping/harfbuzz-rs components/layout_2020/fragment_tree ports/servoshell/minibrowser.rs. * Update minibrowser.rs Returned "if" back to "iff" * Update minibrowser.rs Changed ```BrowserManager``` to ```WebViewManager``` * Update fragment.rs Changed ```[SequentialLayoutState]``` to ```[crate::flow::float::SequentialLayoutState]``` * Update fragment.rs Balanced the length of paragraph lines in fragment.rs * Fix tidy errors --------- Co-authored-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
39f660f520
commit
4cd3c056e5
4 changed files with 6 additions and 6 deletions
|
@ -29,9 +29,9 @@ pub(crate) enum Fragment {
|
|||
Box(BoxFragment),
|
||||
/// Floating content. A floated fragment is very similar to a normal
|
||||
/// [BoxFragment] but it isn't positioned using normal in block flow
|
||||
/// positioning rules (margin collapse, etc). Instead, they are laid out by
|
||||
/// the [SequentialLayoutState] of their float containing block formatting
|
||||
/// context.
|
||||
/// positioning rules (margin collapse, etc). Instead, they are laid
|
||||
/// out by the [crate::flow::float::SequentialLayoutState] of their
|
||||
/// float containing block formatting context.
|
||||
Float(BoxFragment),
|
||||
Positioning(PositioningFragment),
|
||||
/// Absolute and fixed position fragments are hoisted up so that they
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue