Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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>