servo: Merge #19819 - Merge some test crates in their corresponding components (from servo:rm-test-crates); r=<try>

(Do not merge) Merge some test crates in their corresponding components

Source-Repo: https://github.com/servo/servo
Source-Revision: a4808a3649e6cb6e579e60b82d9979755643f711
This commit is contained in:
Anthony Ramine
2018-01-20 08:51:27 -06:00
parent 5938a2f757
commit c04e3b7ed1
155 changed files with 107 additions and 277 deletions

View File

@@ -140,22 +140,22 @@ pub struct InlineFragmentsConstructionResult {
///
/// The resulting `ConstructionItem` for the outer `span` will be:
///
/// ```ignore
/// ```rust,ignore
/// ConstructionItem::InlineFragments(
/// InlineFragmentsConstructionResult{
/// InlineFragmentsConstructionResult {
/// splits: linked_list![
/// InlineBlockSplit{
/// predecessors: IntermediateInlineFragments{
/// InlineBlockSplit {
/// predecessors: IntermediateInlineFragments {
/// fragments: linked_list![A],
/// absolute_descendents: AbsoluteDescendents{
/// absolute_descendents: AbsoluteDescendents {
/// descendant_links: vec![]
/// }
/// },
/// },
/// flow: B
/// flow: B,
/// }
/// ],
/// fragments: linked_list![C],
/// }
/// },
/// )
/// ```
#[derive(Clone)]