aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmlaudioelement.rs
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis@debethencourt.com>2013-09-19 18:05:48 -0400
committerLuis de Bethencourt <luis@debethencourt.com>2013-09-19 19:39:38 -0400
commit2dbd065d91b19924ada276249ae9997bf4496e31 (patch)
tree36bbf5c90b462c2dbd63419935c7df28f470df2a /src/components/script/dom/htmlaudioelement.rs
parent0ca4c19b57a6c444aecb4e8fbdd42cd7ff575c1c (diff)
downloadservo-2dbd065d91b19924ada276249ae9997bf4496e31.tar.gz
servo-2dbd065d91b19924ada276249ae9997bf4496e31.zip
Rename the element field of the DOM Node hierarchy
Renamed htmlelement, and element Fixes #924
Diffstat (limited to 'src/components/script/dom/htmlaudioelement.rs')
-rw-r--r--src/components/script/dom/htmlaudioelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/htmlaudioelement.rs b/src/components/script/dom/htmlaudioelement.rs
index f7586e2460e..4014e81afec 100644
--- a/src/components/script/dom/htmlaudioelement.rs
+++ b/src/components/script/dom/htmlaudioelement.rs
@@ -5,7 +5,7 @@
use dom::htmlmediaelement::HTMLMediaElement;
pub struct HTMLAudioElement {
- parent: HTMLMediaElement
+ htmlelement: HTMLMediaElement
}
impl HTMLAudioElement {