diff options
Diffstat (limited to 'components/script/dom/htmlquoteelement.rs')
-rw-r--r-- | components/script/dom/htmlquoteelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlquoteelement.rs b/components/script/dom/htmlquoteelement.rs index d664aeaf139..acc8a9d4357 100644 --- a/components/script/dom/htmlquoteelement.rs +++ b/components/script/dom/htmlquoteelement.rs @@ -26,7 +26,7 @@ impl HTMLQuoteElementDerived for EventTarget { } impl HTMLQuoteElement { - pub fn new_inherited(localName: DOMString, document: JSRef<Document>) -> HTMLQuoteElement { + fn new_inherited(localName: DOMString, document: JSRef<Document>) -> HTMLQuoteElement { HTMLQuoteElement { htmlelement: HTMLElement::new_inherited(HTMLQuoteElementTypeId, localName, document) } |