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