diff options
Diffstat (limited to 'components/script/dom/domexception.rs')
-rw-r--r-- | components/script/dom/domexception.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/domexception.rs b/components/script/dom/domexception.rs index 414e4481f16..434a6acc957 100644 --- a/components/script/dom/domexception.rs +++ b/components/script/dom/domexception.rs @@ -96,7 +96,8 @@ impl<'a> DOMExceptionMethods for JSRef<'a, DOMException> { DOMErrorName::URLMismatchError => "The given URL does not match another URL.", DOMErrorName::QuotaExceededError => "The quota has been exceeded.", DOMErrorName::TimeoutError => "The operation timed out.", - DOMErrorName::InvalidNodeTypeError => "The supplied node is incorrect or has an incorrect ancestor for this operation.", + DOMErrorName::InvalidNodeTypeError => + "The supplied node is incorrect or has an incorrect ancestor for this operation.", DOMErrorName::DataCloneError => "The object can not be cloned.", DOMErrorName::EncodingError => "The encoding operation (either encoded or decoding) failed." }; |