diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-03-07 10:42:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 10:42:36 -0500 |
commit | a8683bc3d863511cc0517375e7febc8978965ece (patch) | |
tree | f5c5b88f4c61e520d72840ac8fa6dc453a2da015 | |
parent | ab5a57fadf649ede43ae3f478be6df9bfa69893a (diff) | |
download | servo-a8683bc3d863511cc0517375e7febc8978965ece.tar.gz servo-a8683bc3d863511cc0517375e7febc8978965ece.zip |
Remove an unnecessary synchronous full reflow.
-rw-r--r-- | components/script/dom/document.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index 4a10298b7a1..110ce1b1199 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -2201,7 +2201,6 @@ impl Document { window, ); - window.reflow(ReflowGoal::Full, ReflowReason::DOMContentLoaded); update_with_current_time_ms(&self.dom_content_loaded_event_end); // html parsing has finished - set dom content loaded |