diff options
author | Josh Matthews <josh@joshmatthews.net> | 2015-07-20 16:15:13 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2016-02-10 09:20:00 -0500 |
commit | e9b98ad5fa5380096700712839cc49edf46d2e93 (patch) | |
tree | 57ad73c327ffe952579de122df6baf5fd2658724 /components/script/script_thread.rs | |
parent | fc3f93235e9264a6379e370b635ae8a98e41a1be (diff) | |
download | servo-e9b98ad5fa5380096700712839cc49edf46d2e93.tar.gz servo-e9b98ad5fa5380096700712839cc49edf46d2e93.zip |
Make iframes block the enclosing document's load event. Fixes #6663.
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index ef1a04e1682..83e60a50549 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1662,7 +1662,7 @@ impl ScriptThread { let page = get_page(&self.root_page(), containing_pipeline); let document = page.document(); if let Some(iframe) = document.find_iframe_by_pipeline(id) { - iframe.iframe_load_event_steps(); + iframe.iframe_load_event_steps(id); } } |