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