mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Lookup frames by frame_id, not pipeline_id.
This commit is contained in:
parent
4984a83f67
commit
f3993d99b9
13 changed files with 187 additions and 164 deletions
|
@ -83,10 +83,9 @@ pub enum ScriptMsg {
|
|||
/// A new load has been requested, with an option to replace the current entry once loaded
|
||||
/// instead of adding a new entry.
|
||||
LoadUrl(PipelineId, LoadData, bool),
|
||||
/// Dispatch a mozbrowser event to a given iframe,
|
||||
/// or to the window if no subpage id is provided.
|
||||
/// First PipelineId is for the parent, second PipelineId is for the actual pipeline.
|
||||
MozBrowserEvent(PipelineId, Option<PipelineId>, MozBrowserEvent),
|
||||
/// Dispatch a mozbrowser event to the parent of this pipeline.
|
||||
/// 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),
|
||||
/// Gets the length of the joint session history from the constellation.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue