Re: Validator problem

"Michael[tm] Smith" <mike@w3.org>, 2017-10-07 20:01 +0900:
...
>   <html>
>   <head>
>   <title>UEF</title>
>   </head>
>   <!-- this comment is between the head and body -->
>   <h1>test</h1>
>   </html>
> 
> The following is a serialization of exactly how that gets parsed by an HTML
> parser that conforms to the parsing algorithm in the spec:
> 
>   <html><head>
>   <title>UEF</title>
>   </head>
>   <!-- this comment is part of the head -->
>   <body><h1>test</h1>
> 
>   </body></html>

Sorry, made a copy/paste flub with the comment contents; I meant this:

  <html><head>
  <title>UEF</title>
  </head>
  <!-- this comment is between the head and body -->
  <body><h1>test</h1>

  </body></html>


-- 
Michael[tm] Smith https://people.w3.org/mike

Received on Saturday, 7 October 2017 11:06:18 UTC