Remove RethrowContentExceptions and related infrastructure.

We do not intend to implement the DOM in JS, so this code isn't necessary.
This commit is contained in:
Ms2ger 2015-01-10 20:22:03 +01:00
parent 879af966b3
commit 8efcca986c
2 changed files with 13 additions and 35 deletions

View file

@ -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
}