Re: Apparent error in beta HTML validator function

* don.seeley@abbott.com wrote:
>http://validator.w3.org:8001/check?uri=http%3A%2F%2Fwww.abbottdiagnostics.com#line-91
>
>When validating  http://www.abbottdiagnostics.com/  an error for a isolate
></p> is shown on line 91.
>
>The tag is correctly opened on line 89.
>
>The structure of and within the P tag (here without attributes or content) is:
>
><p><a></a>
><script></script><noscript></noscript>
><script></script><noscript></noscript></p>

<noscript> is not a valid child of the <p> element, hence the <p>
element gets implicitly closed at it's first occurence; the parser
reads the document as

  <p>
    <a></a>
    <script></script>
  </p>
  <noscript></noscript>
  <script></script>
  <noscript></noscript>
  </p>

Received on Thursday, 24 October 2002 00:55:09 UTC