diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2017-10-16 14:36:13 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2017-10-17 08:57:37 +0200 |
commit | 96b71754c3f02f11aadfda0039c1172a6ad90eed (patch) | |
tree | 371443a34108269f078e4ca6f69c11468db66ff8 /components/style/gecko | |
parent | 7afe393f2392988d72d617a2fda2a5b89db0999c (diff) | |
download | servo-96b71754c3f02f11aadfda0039c1172a6ad90eed.tar.gz servo-96b71754c3f02f11aadfda0039c1172a6ad90eed.zip |
style: Remove unused TNode::is_in_doc.
Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io>
Diffstat (limited to 'components/style/gecko')
-rw-r--r-- | components/style/gecko/wrapper.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/components/style/gecko/wrapper.rs b/components/style/gecko/wrapper.rs index 5b70f6207a0..3ba4b5d470f 100644 --- a/components/style/gecko/wrapper.rs +++ b/components/style/gecko/wrapper.rs @@ -270,10 +270,6 @@ impl<'ln> TNode for GeckoNode<'ln> { // FIXME(SimonSapin): Servo uses this to implement CSS multicol / fragmentation // Maybe this isn’t useful for Gecko? } - - fn is_in_doc(&self) -> bool { - unsafe { bindings::Gecko_IsInDocument(self.0) } - } } /// A wrapper on top of two kind of iterators, depending on the parent being |