mirror of
https://github.com/servo/servo.git
synced 2025-06-08 08:33:26 +00:00
Webdriver uses browsing context ids rather than pipeline ids.
This commit is contained in:
parent
3c267d7fdd
commit
79743b5358
12 changed files with 265 additions and 246 deletions
|
@ -86,7 +86,7 @@ pub enum ScriptMsg {
|
|||
ForwardEvent(PipelineId, CompositorEvent),
|
||||
/// Requests that the constellation retrieve the current contents of the clipboard
|
||||
GetClipboardContents(IpcSender<String>),
|
||||
/// Get the frame id for a given pipeline.
|
||||
/// Get the browsing context id for a given pipeline.
|
||||
GetBrowsingContextId(PipelineId, IpcSender<Option<BrowsingContextId>>),
|
||||
/// Get the parent info for a given pipeline.
|
||||
GetParentInfo(PipelineId, IpcSender<Option<(PipelineId, FrameType)>>),
|
||||
|
@ -104,9 +104,9 @@ pub enum ScriptMsg {
|
|||
/// The first PipelineId is for the parent, the second is for the originating pipeline.
|
||||
MozBrowserEvent(PipelineId, PipelineId, MozBrowserEvent),
|
||||
/// HTMLIFrameElement Forward or Back traversal.
|
||||
TraverseHistory(Option<PipelineId>, TraversalDirection),
|
||||
TraverseHistory(TopLevelBrowsingContextId, TraversalDirection),
|
||||
/// Gets the length of the joint session history from the constellation.
|
||||
JointSessionHistoryLength(PipelineId, IpcSender<u32>),
|
||||
JointSessionHistoryLength(TopLevelBrowsingContextId, IpcSender<u32>),
|
||||
/// Favicon detected
|
||||
NewFavicon(ServoUrl),
|
||||
/// Status message to be displayed in the chrome, eg. a link URL on mouseover.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue