diff options
author | Keith Yeung <kungfukeith11@gmail.com> | 2016-04-25 19:16:55 -0400 |
---|---|---|
committer | Keith Yeung <kungfukeith11@gmail.com> | 2016-04-30 21:43:01 -0400 |
commit | 3110647852b0dec459414c0bebef61d89d156f64 (patch) | |
tree | 4059ee27433f02bd4219aca049b94892d0be6447 /components/script/script_thread.rs | |
parent | e1091128cd74d59b471d2016ed5542cda6741ac2 (diff) | |
download | servo-3110647852b0dec459414c0bebef61d89d156f64.tar.gz servo-3110647852b0dec459414c0bebef61d89d156f64.zip |
Make IFrameLoadInfo take an Option<LoadData> instead of Option<Url>
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 107902b88ee..4768273c16e 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1812,7 +1812,7 @@ impl ScriptThread { doc.find_iframe(subpage_id) }); if let Some(iframe) = iframe.r() { - iframe.navigate_or_reload_child_browsing_context(Some(load_data.url)); + iframe.navigate_or_reload_child_browsing_context(Some(load_data)); } } None => { |