mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Get the fundamentals of the HTMLDetailsElement rendering stuff working.
Still need to implement the style invalidation. Part of #9395
This commit is contained in:
parent
e551ea7322
commit
9d9c5398a8
13 changed files with 294 additions and 27 deletions
|
@ -25,6 +25,10 @@ pub struct PrivateLayoutData {
|
|||
|
||||
pub after_flow_construction_result: ConstructionResult,
|
||||
|
||||
pub details_summary_flow_construction_result: ConstructionResult,
|
||||
|
||||
pub details_content_flow_construction_result: ConstructionResult,
|
||||
|
||||
/// Various flags.
|
||||
pub flags: LayoutDataFlags,
|
||||
}
|
||||
|
@ -38,6 +42,8 @@ impl PrivateLayoutData {
|
|||
flow_construction_result: ConstructionResult::None,
|
||||
before_flow_construction_result: ConstructionResult::None,
|
||||
after_flow_construction_result: ConstructionResult::None,
|
||||
details_summary_flow_construction_result: ConstructionResult::None,
|
||||
details_content_flow_construction_result: ConstructionResult::None,
|
||||
flags: LayoutDataFlags::empty(),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue