diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-01-22 14:13:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 13:13:48 +0000 |
commit | 5c1723c9833c133e1af641533293e63d8723f8d3 (patch) | |
tree | c37778936ee0ffe88379632f5627cbb18710acda /components/layout_2020/fragment_tree/containing_block.rs | |
parent | d7de206dbd459e8c8bf121f73755d12569c6cc55 (diff) | |
download | servo-5c1723c9833c133e1af641533293e63d8723f8d3.tar.gz servo-5c1723c9833c133e1af641533293e63d8723f8d3.zip |
rustdoc: Fix many rustdoc errors (#31147)
This fixes many rustdoc errors that occur due to raw URLs in rustdoc
comments as well as unescaped Rust code that should be in backticks.
Diffstat (limited to 'components/layout_2020/fragment_tree/containing_block.rs')
-rw-r--r-- | components/layout_2020/fragment_tree/containing_block.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout_2020/fragment_tree/containing_block.rs b/components/layout_2020/fragment_tree/containing_block.rs index 41b4910bdbf..5eb14780c78 100644 --- a/components/layout_2020/fragment_tree/containing_block.rs +++ b/components/layout_2020/fragment_tree/containing_block.rs @@ -15,7 +15,7 @@ pub(crate) struct ContainingBlockManager<'a, T> { /// position is 'relative' or 'static', the containing block is formed by the /// content edge of the nearest block container ancestor box." This is also /// the case for 'position: sticky' elements. - /// https://www.w3.org/TR/CSS2/visudet.html#containing-block-details + /// <https://www.w3.org/TR/CSS2/visudet.html#containing-block-details> pub for_non_absolute_descendants: &'a T, /// The containing block for absolute descendants. "If the element has @@ -29,7 +29,7 @@ pub(crate) struct ContainingBlockManager<'a, T> { /// undefined. /// 2. Otherwise, the containing block is formed by the padding edge of the /// ancestor." - /// https://www.w3.org/TR/CSS2/visudet.html#containing-block-details + /// <https://www.w3.org/TR/CSS2/visudet.html#containing-block-details> /// If the ancestor forms a containing block for all descendants (see below), /// this value will be None and absolute descendants will use the containing /// block for fixed descendants. @@ -41,7 +41,7 @@ pub(crate) struct ContainingBlockManager<'a, T> { /// establish a containing block for all descendants. Its padding box will be /// used to layout for all of its absolute-position descendants, /// fixed-position descendants, and descendant fixed background attachments." - /// https://w3c.github.io/csswg-drafts/css-transforms-1/#containing-block-for-all-descendants + /// <https://w3c.github.io/csswg-drafts/css-transforms-1/#containing-block-for-all-descendants> /// See `ComputedValues::establishes_containing_block_for_all_descendants` /// for a list of conditions where an element forms a containing block for /// all descendants. |