mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Implement synchronous about:blank loading.
Based on initial work by jdm in <https://github.com/servo/servo/pull/8600>.
This commit is contained in:
parent
2677540cd0
commit
b86965f394
34 changed files with 456 additions and 906 deletions
|
@ -6,6 +6,8 @@ use AnimationState;
|
|||
use CompositorEvent;
|
||||
use DocumentState;
|
||||
use IFrameLoadInfo;
|
||||
use IFrameLoadInfoWithData;
|
||||
use LayoutControlMsg;
|
||||
use LoadData;
|
||||
use MozBrowserEvent;
|
||||
use WorkerGlobalScopeInit;
|
||||
|
@ -105,7 +107,9 @@ pub enum ScriptMsg {
|
|||
/// Notifies constellation that an iframe's visibility has been changed.
|
||||
VisibilityChangeComplete(PipelineId, bool),
|
||||
/// A load has been requested in an IFrame.
|
||||
ScriptLoadedURLInIFrame(IFrameLoadInfo),
|
||||
ScriptLoadedURLInIFrame(IFrameLoadInfoWithData),
|
||||
/// A load of `about:blank` has been completed in an IFrame.
|
||||
ScriptLoadedAboutBlankInIFrame(IFrameLoadInfo, IpcSender<LayoutControlMsg>),
|
||||
/// Requests that the constellation set the contents of the clipboard
|
||||
SetClipboardContents(String),
|
||||
/// Mark a new document as active
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue