mirror of
https://github.com/servo/servo.git
synced 2025-08-12 00:45:33 +01:00
style: Make the StyleSheetSet::flush API slightly nicer.
MozReview-Commit-ID: LfJxZA9zhaE Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io>
This commit is contained in:
parent
1c9c0334ba
commit
a98fd5e2b6
2 changed files with 13 additions and 10 deletions
|
@ -490,13 +490,15 @@ impl Stylist {
|
|||
}
|
||||
|
||||
let author_style_disabled = self.stylesheets.author_style_disabled();
|
||||
let (doc_stylesheets, origins_to_rebuild, have_invalidations) =
|
||||
let (origins_to_rebuild, have_invalidations) =
|
||||
self.stylesheets.flush(document_element);
|
||||
|
||||
if origins_to_rebuild.is_empty() {
|
||||
return have_invalidations;
|
||||
}
|
||||
|
||||
let doc_stylesheets = self.stylesheets.iter();
|
||||
|
||||
self.num_rebuilds += 1;
|
||||
|
||||
// Update viewport_constraints regardless of which origins'
|
||||
|
@ -520,9 +522,11 @@ impl Stylist {
|
|||
};
|
||||
|
||||
self.viewport_constraints =
|
||||
ViewportConstraints::maybe_new(&self.device,
|
||||
&cascaded_rule,
|
||||
self.quirks_mode);
|
||||
ViewportConstraints::maybe_new(
|
||||
&self.device,
|
||||
&cascaded_rule,
|
||||
self.quirks_mode,
|
||||
);
|
||||
|
||||
if let Some(ref constraints) = self.viewport_constraints {
|
||||
self.device.account_for_viewport_rule(constraints);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue