tor-browser

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

test_bug884251.xhtml (449B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <head>
      3  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
      4 
      5 <script>
      6 
      7 function boom() {
      8  document.getElementById("k").removeAttribute("href");
      9  ok(true, "changing iframe contents doesn't cause assertions");
     10  SimpleTest.finish();
     11 }
     12 
     13 </script>
     14 </head>
     15 
     16 <body onload="boom();">
     17 <iframe src="data:text/html,1"><link id="k" href="data:text/html,2" /></iframe>
     18 </body>
     19 </html>