mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Add a new RPC call for getting a child browsing context ID
This commit is contained in:
parent
847115ba04
commit
4383b3053b
2 changed files with 11 additions and 0 deletions
|
@ -90,6 +90,8 @@ pub enum ScriptMsg {
|
|||
GetBrowsingContextId(PipelineId, IpcSender<Option<BrowsingContextId>>),
|
||||
/// Get the parent info for a given pipeline.
|
||||
GetParentInfo(PipelineId, IpcSender<Option<PipelineId>>),
|
||||
/// Get the nth child browsing context ID for a given browsing context, sorted in tree order.
|
||||
GetChildBrowsingContextId(BrowsingContextId, usize, IpcSender<Option<BrowsingContextId>>),
|
||||
/// <head> tag finished parsing
|
||||
HeadParsed,
|
||||
/// All pending loads are complete, and the `load` event for this pipeline
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue