diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-26 01:30:06 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-26 09:49:04 +0200 |
commit | e2dac78d3600cb4b2b4474f1db4f0fcaadbe24ea (patch) | |
tree | 3a0ae2014f80a0e7af0d76e7f7e3d043769293a8 /components/script/dom/htmltextareaelement.rs | |
parent | c52fd0a78041ec22db1c4b391556368cd8b87b02 (diff) | |
download | servo-e2dac78d3600cb4b2b4474f1db4f0fcaadbe24ea.tar.gz servo-e2dac78d3600cb4b2b4474f1db4f0fcaadbe24ea.zip |
Rename LayoutJS<T> to LayoutDom<T>
Diffstat (limited to 'components/script/dom/htmltextareaelement.rs')
-rwxr-xr-x | components/script/dom/htmltextareaelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmltextareaelement.rs b/components/script/dom/htmltextareaelement.rs index 4958d2d3ca9..6531586ca29 100755 --- a/components/script/dom/htmltextareaelement.rs +++ b/components/script/dom/htmltextareaelement.rs @@ -9,7 +9,7 @@ use dom::bindings::codegen::Bindings::HTMLTextAreaElementBinding; use dom::bindings::codegen::Bindings::HTMLTextAreaElementBinding::HTMLTextAreaElementMethods; use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods; use dom::bindings::inheritance::Castable; -use dom::bindings::root::{LayoutJS, MutNullableDom, Root}; +use dom::bindings::root::{LayoutDom, MutNullableDom, Root}; use dom::bindings::str::DOMString; use dom::document::Document; use dom::element::{AttributeMutation, Element}; @@ -57,7 +57,7 @@ pub trait LayoutHTMLTextAreaElementHelpers { fn get_rows(self) -> u32; } -impl LayoutHTMLTextAreaElementHelpers for LayoutJS<HTMLTextAreaElement> { +impl LayoutHTMLTextAreaElementHelpers for LayoutDom<HTMLTextAreaElement> { #[allow(unrooted_must_root)] #[allow(unsafe_code)] unsafe fn get_value_for_layout(self) -> String { |