aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmltablecellelement.rs
diff options
context:
space:
mode:
authorGilles Leblanc <gilles.leblanc@gmail.com>2014-10-06 22:49:49 -0400
committerGilles Leblanc <gilles.leblanc@gmail.com>2014-10-06 22:49:49 -0400
commit3a5a66d54e459deb9ead7f8b8760449e9e5faa94 (patch)
tree04e8f2ae33f499e990727b1a841559a203e79fa9 /components/script/dom/htmltablecellelement.rs
parent0549ed3c675d1cc7a8832128e90b7886e3c1710c (diff)
downloadservo-3a5a66d54e459deb9ead7f8b8760449e9e5faa94.tar.gz
servo-3a5a66d54e459deb9ead7f8b8760449e9e5faa94.zip
Take the prefix from createElementNS into account for HTML elements
Fixes #3139
Diffstat (limited to 'components/script/dom/htmltablecellelement.rs')
-rw-r--r--components/script/dom/htmltablecellelement.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmltablecellelement.rs b/components/script/dom/htmltablecellelement.rs
index 9412e6c77bd..f4fc2002fa9 100644
--- a/components/script/dom/htmltablecellelement.rs
+++ b/components/script/dom/htmltablecellelement.rs
@@ -29,9 +29,9 @@ impl HTMLTableCellElementDerived for EventTarget {
}
impl HTMLTableCellElement {
- pub fn new_inherited(type_id: ElementTypeId, tag_name: DOMString, document: JSRef<Document>) -> HTMLTableCellElement {
+ pub fn new_inherited(type_id: ElementTypeId, tag_name: DOMString, prefix: Option<DOMString>, document: JSRef<Document>) -> HTMLTableCellElement {
HTMLTableCellElement {
- htmlelement: HTMLElement::new_inherited(type_id, tag_name, document)
+ htmlelement: HTMLElement::new_inherited(type_id, tag_name, prefix, document)
}
}
}