diff options
author | Connor Brewster <connor.brewster@eagles.oc.edu> | 2017-04-17 18:48:11 -0500 |
---|---|---|
committer | Connor Brewster <connor.brewster@eagles.oc.edu> | 2017-05-12 11:53:43 -0600 |
commit | d004db95cf135dd5ac49c2b83b55feadcb480372 (patch) | |
tree | ce7b65297fba8a6aca72d1d2549e1e6150f8462a /components/msg | |
parent | f5794055108adf508bb0fd16222c4e5cf1d416d8 (diff) | |
download | servo-d004db95cf135dd5ac49c2b83b55feadcb480372.tar.gz servo-d004db95cf135dd5ac49c2b83b55feadcb480372.zip |
Make non-initial about:blank loads asynchronous
Don't update iframe pipeline until load completes
To preserve the previous functionality of delaying load events when a
new navigation is triggered, pending pipeline id represents the
current pending load. The load event is only fired if the load message's
pipeline id matches the pending pipeline id.
Track frame size on Frame instead of Pipeline
Disabled matchMedia test
Track creator pipeline id
Diffstat (limited to 'components/msg')
-rw-r--r-- | components/msg/constellation_msg.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/msg/constellation_msg.rs b/components/msg/constellation_msg.rs index 5b5110099f6..02d4157f20c 100644 --- a/components/msg/constellation_msg.rs +++ b/components/msg/constellation_msg.rs @@ -310,3 +310,4 @@ pub enum FrameType { IFrame, MozBrowserIFrame, } + |