mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Various fixes for cleaning up iframes, compositor layers, pipelines and threads.
This allows most of the jquery test suite to run without exhausting thread resources.
This commit is contained in:
parent
5e61ebaa05
commit
2b3737d34e
11 changed files with 191 additions and 14 deletions
|
@ -114,6 +114,10 @@ impl PaintListener for Box<CompositorProxy+'static+Send> {
|
|||
// `position: fixed` but will not be sufficient to handle `overflow: scroll` or transforms.
|
||||
self.send(Msg::InitializeLayersForPipeline(pipeline_id, epoch, properties));
|
||||
}
|
||||
|
||||
fn notify_paint_task_exiting(&mut self, pipeline_id: PipelineId) {
|
||||
self.send(Msg::PaintTaskExited(pipeline_id))
|
||||
}
|
||||
}
|
||||
|
||||
/// Messages from the painting task and the constellation task to the compositor task.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue