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