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