summaryrefslogtreecommitdiffstats
path: root/browser/extensions/report-site-issue/test/browser/fastclick.html
blob: e13329dfd78d53dbf60ae3ebdf362f2763ddbb76 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<meta charset="utf-8">
<script>
  "use strict";
  function ObscuredFastClick() {
  }
  ObscuredFastClick.prototype = {
    needsClick: () => {},
  };
  window.someRandomVar = new ObscuredFastClick();
</script>