blob: fd48cd0db18f9eb46d435aa499bdeaa40504cd9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype HTML>
<html>
<head>
<title>unclosed canvas tag in body</title>
</head>
<body>
<div><canvas></canvas></div>
<p>This text should be visible, even though it's preceded by an unclosed canvas tag,
because of the </div> that closes an element opened before the canvas.
There's nothing special about div; we get the same results with other types of
elements.
</p>
</body>
</html>
|