<html>
	<head>
		<title>foo</title>
	</head>
	<body>
		<blockquote>
			<blockquote>Simple level 2 blockquote</blockquote>
			Simple level 1 blockquote
		</blockquote>

		<table border="1"><tr><td>
			<table border="1"><tr><td>innerTable</td></tr></table>
			outerTable
		</td></tr></table>

		<blockquote>
			<blockquote>
				<blockquote>
					<p>Third-level blockquote paragraph with long contents that will eventually wrap in a 80-column dump and we'd like it to wrap on more than two lines so we add all this useless contents.</p>
				</blockquote>
				<p>Second-level blockquote paragraph, short contents.</p>
				<ul>
					<li>List item inside 2nd-level.</li>
					<li>Another list item inside 2nd-level blockquote but this time longer so it eventually wraps so we see how it behaves.</li>
				</ul>
				<p>Another paragraph, why not, inside second-level paragraph.</p>
				<table border="1">
					<caption>A table caption inside 2nd-level blockquote</caption>
					<thead>
						<tr><th>colA</th><th>colB</th><th>colC</th><th>colD</th></tr>
					</thead>
					<tbody>
						<tr><td>valA</td><td>valB</td><td>valC</td><td>valD</td></tr>
						<tr><td>valA<br>AA</td><td>valB</td><td>valC</td><td>valD</td></tr>
					</tbody>
				</table>
			</blockquote>
			<p>A paragraph inside a first-level blockquote.</p>
	</blockquote>

	</body>
</html>