tor-browser

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

file_animate_xrays.html (357B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <meta charset=utf-8>
      5 <script>
      6 Element.prototype.animate = function() {
      7  throw 'Called animate() as defined in content document';
      8 }
      9 for (let name of ["KeyframeEffect", "Animation"]) {
     10  this[name] = function() {
     11    throw `Called overridden ${name} constructor`;
     12  };
     13 }
     14 </script>
     15 <body>
     16 <div id="target"></div>
     17 </body>
     18 </html>