mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-14 15:37:55 +00:00
60 lines
1.4 KiB
HTML
60 lines
1.4 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=573588
|
|
-->
|
|
<head>
|
|
<title>Basic functional test</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="notification_common.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=573588">Basic property tests</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
if (is_feature_enabled() == false) {
|
|
SimpleTest.finish();
|
|
}
|
|
else
|
|
{
|
|
click_was_called = false;
|
|
|
|
force_prompt(true);
|
|
force_click_on_notification(true);
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
ok(navigator.mozNotification, "test for notification.");
|
|
|
|
var notification = navigator.mozNotification.createNotification("test", "test");
|
|
ok(notification, "test to ensure we can create a notification");
|
|
|
|
notification.onclose = function() {
|
|
ok(true, "notification was display and is now closing");
|
|
ok(click_was_called, "was notification clicked?");
|
|
|
|
reset_prompt();
|
|
SimpleTest.finish();
|
|
};
|
|
|
|
notification.onclick = function() {
|
|
ok(true, "Click was called. Good.");
|
|
click_was_called = true;
|
|
}
|
|
|
|
notification.show();
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|