blob: c742f757fb3e1335ba8cf94db5ec90878fa6e107 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>&lt;q&gt;</title>
</head>
<body>
<!-- is structured inline -->
<p><q cite="url" class="class" lang="en">text</q></p>
<!-- is strictly inline -->
<p><dfn><q cite="url" class="class" lang="en">text</q></dfn></p>
<!-- can be empty -->
<p>text <q></q></p>
<p>text <dfn><q></q></dfn></p>
<!-- can contain interactive -->
<p><q><a>text</a></q></p>
<p><dfn><q><a>text</a></q></dfn></p>
<!-- cannot contain structured inline -->
<p><q>text <ul><li>list</li></ul> <em>elem</em></q></p>
</body>
</html>