1<?xml version="1.0" encoding="ISO-8859-1" ?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
4   <head>
5       <title>My page</title>
6   </head>
7   <body id="cv">
8   This should return 2 HTML errors. But there is none<br/>
9   DIV or UL are not allowed in address<br/>
10   <address id="contact_postal">
11       <div id="identite">toto titi</div>
12       <div id="adresse">
13           1st street<br />
14           23X52 - NY <br />
15       </div>
16   </address>
17   <hr />
18   <address id="contact_autre">
19     <ul id="contact_tel">
20       <li id="portable">...</li>
21       <li id="fixe">...</li>
22     </ul>
23   </address>
24   <hr />
25   <p>p is allowed within address only in html transitional.</p>
26   <address id="contact_autre">
27     <p><a id="adresse_mail" href="/path/to/contact/page">contact name</a></p>
28   </address>
29</body>
30</html>