diff options
author | Josh Matthews <josh@joshmatthews.net> | 2017-01-10 15:05:17 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2017-02-22 14:19:35 -0500 |
commit | b3633713392a2754ba2324209cf2db8fadb70110 (patch) | |
tree | fc261486f9fea2391657bd4766f21b34f0df3855 /components/script/lib.rs | |
parent | 0d2ec852ac63f3513394df7937bddb72daed8005 (diff) | |
download | servo-b3633713392a2754ba2324209cf2db8fadb70110.tar.gz servo-b3633713392a2754ba2324209cf2db8fadb70110.zip |
Extract layout image request into separate file. Do not block the document load event.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index e5c93357bd2..81c7eb0901f 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -110,6 +110,7 @@ pub mod document_loader; #[macro_use] mod dom; pub mod fetch; +mod layout_image; pub mod layout_wrapper; mod mem; mod microtask; |