mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
When webdriver is getting a pipeline id, it should wait for the pipeline document to be ready.
This commit is contained in:
parent
3bd6c2088b
commit
00a8efe9fd
3 changed files with 25 additions and 30 deletions
|
@ -88,8 +88,9 @@ pub enum CompositorMsg {
|
|||
/// with the provided pipeline id
|
||||
GetFrame(PipelineId, IpcSender<Option<FrameId>>),
|
||||
/// Request that the constellation send the current pipeline id for the provided frame
|
||||
/// id, or for the root frame if this is None, over a provided channel
|
||||
GetPipeline(Option<FrameId>, IpcSender<Option<PipelineId>>),
|
||||
/// id, or for the root frame if this is None, over a provided channel.
|
||||
/// Also returns a boolean saying whether the document has finished loading or not.
|
||||
GetPipeline(Option<FrameId>, IpcSender<Option<(PipelineId, bool)>>),
|
||||
/// Requests that the constellation inform the compositor of the title of the pipeline
|
||||
/// immediately.
|
||||
GetPipelineTitle(PipelineId),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue