model-novalid.html (383B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title><div></title> 6 </head> 7 <body> 8 <!-- is not strictly inline --> 9 <p><dfn>text 10 <div> 11 <p>text</p> 12 </div> 13 </dfn></p> 14 15 <!-- is not structured inline --> 16 <p>text 17 <div> 18 <p>text</p> 19 </div> 20 </p> 21 22 <!-- cannot contain inline --> 23 <div> 24 some <em>text</em> 25 </div> 26 </body> 27 </html>