diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-25 09:38:19 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-25 12:32:34 +0200 |
commit | da392e3524732cacdbd6626994ce517fc0ab6f9f (patch) | |
tree | 4504fb95a2d605eff8d6d62c8887aa42cb977bd1 /components/script/layout_image.rs | |
parent | f3214372bf7f754126e8b032225f81aea1cccb1b (diff) | |
download | servo-da392e3524732cacdbd6626994ce517fc0ab6f9f.tar.gz servo-da392e3524732cacdbd6626994ce517fc0ab6f9f.zip |
Rename Document::mut_loader to loader_mut
Diffstat (limited to 'components/script/layout_image.rs')
-rw-r--r-- | components/script/layout_image.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/layout_image.rs b/components/script/layout_image.rs index 85f8c99a49a..83f4510cf84 100644 --- a/components/script/layout_image.rs +++ b/components/script/layout_image.rs @@ -77,5 +77,5 @@ pub fn fetch_image_for_layout(url: ServoUrl, }; // Layout image loads do not delay the document load event. - document.mut_loader().fetch_async_background(request, action_sender); + document.loader().fetch_async_background(request, action_sender); } |