/ libxml2 / test / xhtml1
xhtml1
 1  <?xml version="1.0" encoding="UTF-8"?>
 2  <!DOCTYPE html 
 3       PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 4      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 5  <!-- 3.1.1 3/ -->
 6  <html xml:lang="en" lang="en">
 7    <head>
 8      <title>Virtual Library</title>
 9    </head>
10    <!-- 4.8 -->
11    <script type="text/javascript">
12    ... unescaped script &lt; content ...
13    </script>
14    <body>
15      <p>Moved to <a href="http://example.org/">example.org</a>.</p>
16    </body>
17    <!-- C2 -->
18    <img src="foo.gif" alt="foo"/>
19    <!-- C3 -->
20    <p/>
21    <!-- C7 -->
22    <p lang="fr">coucou</p>
23    <p xml:lang="fr">salut</p>
24    <!-- C8 -->
25    <p name="fragid">test</p>
26    <!-- 4.5 -->
27    <dl compact="">
28    <dt>Internet Engineering Task Force</dt>
29    <dd>An organization which establishes technical standards for the Internet</dd>
30    </dl>
31  
32  </html>
33  
34