From ce7b6616fbc552c14d3315b09c0bc8492d742eef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Thu, 21 Jun 2018 12:31:10 +0200 Subject: [PATCH] style: Fix a typo in stylesheet cloning. Summary: Just something I noticed while writing unrelated code. Reviewers: jwatt Bug #: 1470105 Differential Revision: https://phabricator.services.mozilla.com/D1747 MozReview-Commit-ID: 7KMTT9Kmdwc --- components/style/stylesheets/stylesheet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/stylesheets/stylesheet.rs b/components/style/stylesheets/stylesheet.rs index 5312826bd29..131466b52f9 100644 --- a/components/style/stylesheets/stylesheet.rs +++ b/components/style/stylesheets/stylesheet.rs @@ -137,7 +137,7 @@ impl DeepCloneWithLock for StylesheetContents { url_data: RwLock::new((*self.url_data.read()).clone()), namespaces: RwLock::new((*self.namespaces.read()).clone()), source_map_url: RwLock::new((*self.source_map_url.read()).clone()), - source_url: RwLock::new((*self.source_map_url.read()).clone()), + source_url: RwLock::new((*self.source_url.read()).clone()), } } }