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