mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Mark pipelines not visible when updating the active pipeline for a browsing context.
This commit is contained in:
parent
cc131be2e0
commit
0e30666d18
1 changed files with 11 additions and 0 deletions
|
@ -2655,6 +2655,13 @@ where
|
|||
},
|
||||
};
|
||||
|
||||
if let Some(old_pipeline) = self.pipelines.get(&old_pipeline_id) {
|
||||
old_pipeline.notify_visibility(false);
|
||||
}
|
||||
if let Some(new_pipeline) = self.pipelines.get(&new_pipeline_id) {
|
||||
new_pipeline.notify_visibility(true);
|
||||
}
|
||||
|
||||
self.update_activity(old_pipeline_id);
|
||||
self.update_activity(new_pipeline_id);
|
||||
|
||||
|
@ -3373,6 +3380,10 @@ where
|
|||
self.notify_history_changed(change.top_level_browsing_context_id);
|
||||
},
|
||||
Some(old_pipeline_id) => {
|
||||
if let Some(pipeline) = self.pipelines.get(&old_pipeline_id) {
|
||||
pipeline.notify_visibility(false);
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/#unload-a-document
|
||||
self.unload_document(old_pipeline_id);
|
||||
// Deactivate the old pipeline, and activate the new one.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue