blob: 2fae804c2c0a94dec203faf1ee55a3d6ae723666 [file] [log] [blame]
<!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>