[][src]Struct lol_html::errors::ParsingAmbiguityError

pub struct ParsingAmbiguityError { /* fields omitted */ }

An error that occurs when HTML parser runs into an ambigious state in the strict mode.

Since the rewriter operates on a token stream and doesn't have access to a full DOM-tree, there are certain rare cases of non-conforming HTML markup which can't be guaranteed to be parsed correctly without an ability to backtrace the tree.

Therefore, due to security considerations, sometimes it's preferable to abort the rewriting process in case of such uncertainty.

One of the simplest examples of such markup is the following:

...
<select><xmp><script>"use strict";</script></select>
...

The <xmp> element is not allowed inside the <select> element, so in a browser the start tag for <xmp> will be ignored and following <script> element will be parsed and executed.

On the other hand, the <select> element itself can be also ignored depending on the context in which it was parsed. In this case, the <xmp> element will not be ignored and the <script> element along with its content will be parsed as a simple text inside it.

So, in this case the parser needs an ability to backtrace the DOM-tree to figure out the correct parsing context.

Trait Implementations

impl Debug for ParsingAmbiguityError[src]

impl Display for ParsingAmbiguityError[src]

impl Error for ParsingAmbiguityError[src]

impl PartialEq<ParsingAmbiguityError> for ParsingAmbiguityError[src]

impl StructuralPartialEq for ParsingAmbiguityError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.