Bug: Multiple body elements in noframes

4-Aug-2000 Tidy allows multiple body elements in a noframes element, and
in fact it will add extra body elements to contain out-of-place content.
If I'm interpreting the HTML 4 spec correctly, multiple bodies are not
allowed in a noframes element.

I didn't attempt a fix because, as far as I know, none of my browsers
will display the noframes content, so I'm not sure how it should be
tidied.

------------------------ Example HTML document -------------------------
<html>
  <head><title></title></head>
  <frameset>
    <frame>
    <noframes>
      <body>
        Text in body 1.
      </body>
      <body>
        Text in illegal body 2.
      </body>
      Text in inferred illegal body 3.
    </noframes>
  </frameset>
</html>
Text in inferred illegal body 4.
------------------------------------------------------------------------

Randy

Received on Sunday, 20 August 2000 20:10:08 UTC