model-novalid.html (993B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title>Ordered List: <ol> <li></title> 6 </head> 7 <body> 8 <!-- is block --> 9 <ol class="class" id="id" lang="en" start="05"> 10 <li class="class" id="id" lang="en" value="9">text</li> 11 </ol> 12 13 <!-- is structured inline --> 14 <p>paragraph 15 <ol class="class" id="id" lang="en" start="-8"> 16 <li class="class" id="id" lang="en" value="-19">text</li> 17 </ol> 18 </p> 19 20 <!-- can be empty --> 21 <ol></ol> 22 <ol> 23 <li></li> 24 <li></li> 25 </ol> 26 27 <!-- cannot contain structured inline --> 28 <ol> 29 <li>some <em>text</em> 30 <pre>more text</pre> 31 </li> 32 </ol> 33 <p>paragraph 34 <ol> 35 <li>some <em>text</em> 36 <pre>more text</pre> 37 </li> 38 </ol> 39 </p> 40 41 <!-- can contain blocks --> 42 <ol> 43 <li> 44 <p>some</p> 45 <p>text</p> 46 </li> 47 </ol> 48 49 <!-- can contain interactive --> 50 <ol><li><a>text</a></li></ol> 51 <p>paragraph 52 <ol><li><a>text</a></li></ol> 53 </p> 54 </body> 55 </html>