aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmltablecellelement.rs
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2015-12-02 13:42:45 -0800
committerEli Friedman <eli.friedman@gmail.com>2015-12-02 13:42:45 -0800
commite42dcb3712bfc70241054aa0e25deebd675aaef9 (patch)
tree61e6d564854f6fc095553fa4c166a4c24442b129 /components/script/dom/htmltablecellelement.rs
parent2be60be062e14c937af601faed78a6aceccdb062 (diff)
downloadservo-e42dcb3712bfc70241054aa0e25deebd675aaef9.tar.gz
servo-e42dcb3712bfc70241054aa0e25deebd675aaef9.zip
Remove unnecessary conversion to/from DOMString for localName.
Diffstat (limited to 'components/script/dom/htmltablecellelement.rs')
-rw-r--r--components/script/dom/htmltablecellelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmltablecellelement.rs b/components/script/dom/htmltablecellelement.rs
index 25a0806b10d..f73ebd6a72c 100644
--- a/components/script/dom/htmltablecellelement.rs
+++ b/components/script/dom/htmltablecellelement.rs
@@ -27,7 +27,7 @@ pub struct HTMLTableCellElement {
}
impl HTMLTableCellElement {
- pub fn new_inherited(tag_name: DOMString,
+ pub fn new_inherited(tag_name: Atom,
prefix: Option<DOMString>,
document: &Document)
-> HTMLTableCellElement {