tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

unclosed-canvas-2.htm (637B)


      1 <!doctype HTML>
      2 <html>
      3    <head>
      4        <title>unclosed canvas tag in body</title>
      5        <link rel="match" href="unclosed-canvas-2-expected.htm">
      6        <meta name="assert" content="Test what if canvas tag is unclosed in tag div" />
      7        <script type="text/javascript"></script>
      8    </head>
      9    <body>
     10        <div><canvas></div>
     11        <p>This text should be visible, even though it's preceded by an unclosed canvas tag,
     12        because of the &lt;/div&gt; that closes an element opened before the canvas.
     13        There's nothing special about div; we get the same results with other types of elements.</p>
     14    </body>
     15 </html>