tor-browser

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

test-error.html (505B)


      1 <!DOCTYPE HTML>
      2 <html dir="ltr" xml:lang="en-US" lang="en-US">
      3  <head>
      4    <meta charset="utf-8">
      5    <title>Console error test</title>
      6  </head>
      7  <body>
      8    <h1>Heads Up Display - error test</h1>
      9    <p><button>generate error</button></p>
     10 
     11    <script type="text/javascript">
     12      /* eslint-disable */
     13      var button = document.getElementsByTagName("button")[0];
     14 
     15      button.addEventListener("click", function  () {
     16        fooBazBaz.bar();
     17      }, {once: true});
     18    </script>
     19  </body>
     20 </html>