diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2013-09-19 18:05:48 -0400 |
---|---|---|
committer | Luis de Bethencourt <luis@debethencourt.com> | 2013-09-19 19:39:38 -0400 |
commit | 2dbd065d91b19924ada276249ae9997bf4496e31 (patch) | |
tree | 36bbf5c90b462c2dbd63419935c7df28f470df2a /src/components/script/dom/htmlpreelement.rs | |
parent | 0ca4c19b57a6c444aecb4e8fbdd42cd7ff575c1c (diff) | |
download | servo-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/htmlpreelement.rs')
-rw-r--r-- | src/components/script/dom/htmlpreelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/htmlpreelement.rs b/src/components/script/dom/htmlpreelement.rs index 4e5ddb49fa6..b866d360e60 100644 --- a/src/components/script/dom/htmlpreelement.rs +++ b/src/components/script/dom/htmlpreelement.rs @@ -6,7 +6,7 @@ use dom::bindings::utils::{ErrorResult}; use dom::htmlelement::HTMLElement; pub struct HTMLPreElement { - parent: HTMLElement, + htmlelement: HTMLElement, } impl HTMLPreElement { |