diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2015-03-13 15:08:02 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2015-03-17 09:35:41 +1000 |
commit | 939a89568e9506c2c6ffbd1f49e3acda6acdf370 (patch) | |
tree | d760bf3ad5309c910b9f4e0f5518403a2fbf2e8b /components/compositing/headless.rs | |
parent | 0888a3a16d4f5eafe4f8008ec060764645f3bee5 (diff) | |
download | servo-939a89568e9506c2c6ffbd1f49e3acda6acdf370.tar.gz servo-939a89568e9506c2c6ffbd1f49e3acda6acdf370.zip |
First part of refactoring constellation to support iframe navigation.
The history is now recorded per frame, but needs to be exposed in a followup PR.
Also fixes a race condition that occurs loading iframes under heavy CPU load.
This ensures that iframes never do a reflow / layout until they have a valid
window size set from their parent frame.
Diffstat (limited to 'components/compositing/headless.rs')
-rw-r--r-- | components/compositing/headless.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/components/compositing/headless.rs b/components/compositing/headless.rs index 9957cb067cc..d25fc4f59e1 100644 --- a/components/compositing/headless.rs +++ b/components/compositing/headless.rs @@ -90,14 +90,6 @@ impl CompositorEventListener for NullCompositor { response_chan.send(()).unwrap(); } - Msg::ChangeLayerPipelineAndRemoveChildren(_, _, response_channel) => { - response_channel.send(()).unwrap(); - } - - Msg::CreateRootLayerForPipeline(_, _, _, response_channel) => { - response_channel.send(()).unwrap(); - } - // Explicitly list ignored messages so that when we add a new one, // we'll notice and think about whether it needs a response, like // SetFrameTree. |