diff options
Diffstat (limited to 'components/script/dom/document.rs')
-rw-r--r-- | components/script/dom/document.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index 15ade93ec6c..0852eeb7498 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -3242,7 +3242,7 @@ impl Document { /// (Need to figure out what to do with the style attribute /// of elements adopted into another document.) static PER_PROCESS_AUTHOR_SHARED_LOCK: LazyLock<StyleSharedRwLock> = - LazyLock::new(|| StyleSharedRwLock::new()); + LazyLock::new(StyleSharedRwLock::new); PER_PROCESS_AUTHOR_SHARED_LOCK.clone() //StyleSharedRwLock::new() |