bug448564-1_malformed.html (604B)
1 <html> 2 <head> 3 <link rel="stylesheet" type="text/css" 4 href="bug448564_forms.css"> 5 </link> 6 </head> 7 <body> 8 <i><b> 9 <form>a</form> <!-- These forms should not end up nested! --> 10 <form>b</form> 11 <!-- Why does it matter whether we explicitly close this tag? --> 12 <!-- It matters because nsHTMLTokenizer::ScanDocStructure checks 13 whether there are any malformed tags before parsing begins, 14 and, if there are any, residual style tags (<i>, <b>, &c.) 15 must be pushed inside block elements (e.g., <form>). --> 16 <div><!-- </div> --> 17 </b></i> 18 </body> 19 </html>