tor-browser

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

unclosed-canvas-4-expected.htm (605B)


      1 <!doctype HTML>
      2 <html>
      3    <head>
      4        <title>unclosed canvas tag in body</title>
      5    </head>
      6    <body>
      7        <p>There should be no text below this, because the text is inside a canvas element
      8            and the &lt;/div&gt; that's also inside the canvas element does not close an open
      9            element. The canvas is never closed, and the rest of the body ends up inside it.
     10            There's nothing special about div; we get the same results with other types of
     11            elements. The fact that the canvas tag uses XML self-closing syntax has no effect.
     12        </p>
     13    </body>
     14 </html>