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