aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmlbuttonelement.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/htmlbuttonelement.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/htmlbuttonelement.rs')
-rw-r--r--src/components/script/dom/htmlbuttonelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/htmlbuttonelement.rs b/src/components/script/dom/htmlbuttonelement.rs
index dbc84a6e4a3..9bab84c2ae0 100644
--- a/src/components/script/dom/htmlbuttonelement.rs
+++ b/src/components/script/dom/htmlbuttonelement.rs
@@ -8,7 +8,7 @@ use dom::node::{AbstractNode, ScriptView};
use dom::validitystate::ValidityState;
pub struct HTMLButtonElement {
- parent: HTMLElement
+ htmlelement: HTMLElement
}
impl HTMLButtonElement {