diff options
author | Anthony Ramine <nox@nox.paris> | 2020-02-28 11:48:16 +0100 |
---|---|---|
committer | Anthony Ramine <nox@nox.paris> | 2020-03-05 13:01:13 +0100 |
commit | 9996e48500d11617102aa3d389b054acc7759822 (patch) | |
tree | 9b430e2daca70f773c253d40ba435b2f139a1167 /components/layout_thread_2020/lib.rs | |
parent | 756cf66cd2f134edf4b3a14226a3028650af9379 (diff) | |
download | servo-9996e48500d11617102aa3d389b054acc7759822.tar.gz servo-9996e48500d11617102aa3d389b054acc7759822.zip |
Remove syn 0.15 from our crate graph (fixes #24421)
This required bumps of:
* gleam
* image
* rust-webvr
* webrender
* webxr
Diffstat (limited to 'components/layout_thread_2020/lib.rs')
-rw-r--r-- | components/layout_thread_2020/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout_thread_2020/lib.rs b/components/layout_thread_2020/lib.rs index 1a150401296..5a76997b2ad 100644 --- a/components/layout_thread_2020/lib.rs +++ b/components/layout_thread_2020/lib.rs @@ -1420,7 +1420,7 @@ impl LayoutThread { fragment_tree.print(); } if self.dump_display_list { - display_list.wr.print_display_list(); + display_list.wr.dump_serialized_display_list(); } debug!("Layout done!"); |