aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmltablerowelement.rs
diff options
context:
space:
mode:
authorTim Taubert <tim@timtaubert.de>2014-10-12 13:24:24 +0200
committerTim Taubert <tim@timtaubert.de>2014-10-13 13:25:43 +0200
commitdf60f8b2c559cb4119b96174231fc4161bdcb4da (patch)
treefccb11a69c7f0a9b3762c374fc773fa7594caee2 /components/script/dom/htmltablerowelement.rs
parentba073d7e99b11ce4fad34696d2b5c13b69026fd5 (diff)
downloadservo-df60f8b2c559cb4119b96174231fc4161bdcb4da.tar.gz
servo-df60f8b2c559cb4119b96174231fc4161bdcb4da.zip
Privatize EventTarget and EventListenerEntry
Diffstat (limited to 'components/script/dom/htmltablerowelement.rs')
-rw-r--r--components/script/dom/htmltablerowelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmltablerowelement.rs b/components/script/dom/htmltablerowelement.rs
index 3552147fd96..45f1f06fe28 100644
--- a/components/script/dom/htmltablerowelement.rs
+++ b/components/script/dom/htmltablerowelement.rs
@@ -22,7 +22,7 @@ pub struct HTMLTableRowElement {
impl HTMLTableRowElementDerived for EventTarget {
fn is_htmltablerowelement(&self) -> bool {
- self.type_id == NodeTargetTypeId(ElementNodeTypeId(HTMLTableRowElementTypeId))
+ *self.type_id() == NodeTargetTypeId(ElementNodeTypeId(HTMLTableRowElementTypeId))
}
}