diff options
author | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2013-10-15 22:48:23 +0900 |
---|---|---|
committer | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2013-10-16 00:20:20 +0900 |
commit | 776ab679054619d87ca5d546760c2ad6bd79485a (patch) | |
tree | 721d9fd87ad4d1c4334d40b7cae745e3b5feb9a8 /src/components/script/dom/htmlaudioelement.rs | |
parent | fc9a3baa714cf33c4e960abda9969bd6aacc5b3e (diff) | |
download | servo-776ab679054619d87ca5d546760c2ad6bd79485a.tar.gz servo-776ab679054619d87ca5d546760c2ad6bd79485a.zip |
Rename the element field of the DOM Node hierarchy.
See #924
Diffstat (limited to 'src/components/script/dom/htmlaudioelement.rs')
-rw-r--r-- | src/components/script/dom/htmlaudioelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/htmlaudioelement.rs b/src/components/script/dom/htmlaudioelement.rs index 4014e81afec..dbb33a42331 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 { - htmlelement: HTMLMediaElement + htmlmediaelement: HTMLMediaElement } impl HTMLAudioElement { |