Browser error recovery

This page contains deliberate coding errors. How do various browsers deal with it?


Example One


<I>
This is some text. All browsers that support the <I> element should display it as Italic.

<P>This is a new paragraph. Does your browser still show the text in Italic?</P>

<TABLE CELLSPACING="0" CELLPADDING="6" BORDER="4">
<TR>
    <TD>This text is inside a table. Does your browser still show the text in Italic?</TD>
</TR>
</TABLE>

<P>This is a new paragraph after the table. Does your browser still show the text in Italic?</P>

</I>
This is some text. All browsers that support the <I> element should display it as Italic.

This is a new paragraph. Does your browser still show the text in large, green, Verdana? (Netscape: YES; IE: YES; Opera: NO.)

This text is inside a table. Does your browser still show the text in Italic? (Netscape: NO; IE: NO; Opera: NO.)

This is a new paragraph after the table. Does your browser still show the text in Italic? (Netscape: YES; IE: YES; Opera: NO.)


Example Two


<P>
<I>
This is some text. All browsers that support the <I> element should display it as Italic.
</P>

<P>This is a new paragraph. Does your browser still show the text in Italic?</P>

<TABLE CELLSPACING="0" CELLPADDING="6" BORDER="4">
<TR>
    <TD>This text is inside a table. Does your browser still show the text in Italic?</TD>
</TR>
</TABLE>

<P>This is a new paragraph after the table. Does your browser still show the text in Italic?

</I>

This is some text. All browsers that support the <I> element should display it as Italic.

This is a new paragraph. Does your browser still show the text in Italic? (Netscape: YES; IE: YES; Opera: NO.)

This text is inside a table. Does your browser still show the text in Italic? (Netscape: NO; IE: NO; Opera: NO.)

This is a new paragraph after the table. Does your browser still show the text in Italic? (Netscape: YES; IE: YES; Opera: NO.)