mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
Dispatch load events for cross origin iframes. Resolves #6672.
This commit is contained in:
parent
2a125b5613
commit
c23cbd4163
23 changed files with 470 additions and 66 deletions
|
@ -137,6 +137,13 @@ pub enum ConstellationControlMsg {
|
|||
WebFontLoaded(PipelineId),
|
||||
/// Get the current state of the script task for a given pipeline.
|
||||
GetCurrentState(IpcSender<ScriptState>, PipelineId),
|
||||
/// Cause a `load` event to be dispatched at the appropriate frame element.
|
||||
DispatchFrameLoadEvent {
|
||||
/// The pipeline that has been marked as loaded.
|
||||
target: PipelineId,
|
||||
/// The pipeline that contains a frame loading the target pipeline.
|
||||
parent: PipelineId
|
||||
},
|
||||
}
|
||||
|
||||
/// The mouse button involved in the event.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue