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/htmltablecellelement.rs | |
parent | c52fd0a78041ec22db1c4b391556368cd8b87b02 (diff) | |
download | servo-e2dac78d3600cb4b2b4474f1db4f0fcaadbe24ea.tar.gz servo-e2dac78d3600cb4b2b4474f1db4f0fcaadbe24ea.zip |
Rename LayoutJS<T> to LayoutDom<T>
Diffstat (limited to 'components/script/dom/htmltablecellelement.rs')
-rw-r--r-- | components/script/dom/htmltablecellelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmltablecellelement.rs b/components/script/dom/htmltablecellelement.rs index 6bbdc65079a..3be05003a4a 100644 --- a/components/script/dom/htmltablecellelement.rs +++ b/components/script/dom/htmltablecellelement.rs @@ -6,7 +6,7 @@ use cssparser::RGBA; use dom::bindings::codegen::Bindings::HTMLTableCellElementBinding::HTMLTableCellElementMethods; use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods; use dom::bindings::inheritance::Castable; -use dom::bindings::root::LayoutJS; +use dom::bindings::root::LayoutDom; use dom::bindings::str::DOMString; use dom::document::Document; use dom::element::{Element, RawLayoutElementHelpers}; @@ -88,7 +88,7 @@ pub trait HTMLTableCellElementLayoutHelpers { } #[allow(unsafe_code)] -impl HTMLTableCellElementLayoutHelpers for LayoutJS<HTMLTableCellElement> { +impl HTMLTableCellElementLayoutHelpers for LayoutDom<HTMLTableCellElement> { fn get_background_color(&self) -> Option<RGBA> { unsafe { (&*self.upcast::<Element>().unsafe_get()) |