model-novalid.html (636B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title><strong></title> 6 </head> 7 <body> 8 <!-- is structured inline --> 9 <p><strong class="class" lang="en">text</strong></p> 10 11 <!-- is strictly inline --> 12 <p><dfn><strong class="class" lang="en">text</strong></dfn></p> 13 14 <!-- can be empty --> 15 <p>text <strong></strong></p> 16 <p>text <dfn><strong></strong></dfn></p> 17 18 <!-- can contain interactive --> 19 <p><strong><a>text</a></strong></p> 20 <p><dfn><strong><a>text</a></strong></dfn></p> 21 22 <!-- cannot contain structured inline --> 23 <p><strong>text <ul><li>list</li></ul> <em>elem</em></strong></p> 24 </body> 25 </html>