diff options
Diffstat (limited to 'components/script/dom/bindings/callback.rs')
-rw-r--r-- | components/script/dom/bindings/callback.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/components/script/dom/bindings/callback.rs b/components/script/dom/bindings/callback.rs index 29741117383..c9718b6e026 100644 --- a/components/script/dom/bindings/callback.rs +++ b/components/script/dom/bindings/callback.rs @@ -20,10 +20,6 @@ use std::ptr; pub enum ExceptionHandling { /// Report any exception and don't throw it to the caller code. ReportExceptions, - /// Throw an exception to the caller code if the thrown exception is a - /// binding object for a DOMError from the caller's scope, otherwise report - /// it. - RethrowContentExceptions, /// Throw any exception to the caller code. RethrowExceptions } |