E` il tag <noscript> all'interno della head che non gli piace

Vedi questi due codici:
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>

<noscript>
  
</noscript>
</head>
<body>
  <div>
    

ciao</p>
  </div>
</body>
</html>
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>


  <link rel="stylesheet" type="text/css" media="screen" href="fs/menu.css" />

</head>
<body>
  <div>
    

ciao</p>
  </div>
</body>
</html>
Il primo da` errore, mentre il secondo viene accettato.

Anch'io ricordavo che il noscript si poteva usare anche nella head (sarei quindi tentato di attribuire l'errore al validatore stesso), ma il reference di w3schools.com dice:
The noscript element can contain all the elements that you can find inside the body element of a normal HTML page.
.
Aspettiamo se qualcun altro ha altre fonti piu` autorevoli