diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-06-23 20:00:26 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-06-23 20:34:10 +0200 |
commit | 895946bb186a194d1545e4782715f074cc8f8f6c (patch) | |
tree | aad4d22255799cd13706f20338e1e5d9e81010ec /components/layout_thread/dom_wrapper.rs | |
parent | 750c223021220da374b35bced42edb60d16e0106 (diff) | |
download | servo-895946bb186a194d1545e4782715f074cc8f8f6c.tar.gz servo-895946bb186a194d1545e4782715f074cc8f8f6c.zip |
layout: script: Fix build.
Diffstat (limited to 'components/layout_thread/dom_wrapper.rs')
-rw-r--r-- | components/layout_thread/dom_wrapper.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout_thread/dom_wrapper.rs b/components/layout_thread/dom_wrapper.rs index 309ddaf7e93..89a21ec64d5 100644 --- a/components/layout_thread/dom_wrapper.rs +++ b/components/layout_thread/dom_wrapper.rs @@ -979,7 +979,7 @@ impl<'ln> ThreadSafeLayoutNode for ServoThreadSafeLayoutNode<'ln> { // // If you implement other values for this property, you will almost certainly // want to update this check. - !self.style(context).get_inheritedtext().white_space.preserve_newlines() + !self.style(context).get_inherited_text().white_space.preserve_newlines() } } |