tor-browser

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

constructor-invalid.https.html (504B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Notification constructor (invalid)</title>
      4 <link rel="author" title="Intel" href="http://www.intel.com/">
      5 <link rel="author" title="Xin Liu" href="mailto:xinx.liu@intel.com">
      6 <script src="/resources/testharness.js"></script>
      7 <script src="/resources/testharnessreport.js"></script>
      8 <script>
      9 test(function() {
     10    assert_throws_js(TypeError, function() {
     11        new Notification()
     12    })
     13 }, "Called the notification constructor with no arguments.")
     14 </script>