mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-27 21:39:15 +00:00
20 lines
785 B
HTML
20 lines
785 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>Web Notifications Test: notification - icon (basic)</title>
|
|
<link rel="author" title="Intel" href="http://www.intel.com/">
|
|
<link rel="author" title="Xin Liu" href="mailto:xinx.liu@intel.com">
|
|
<link rel="help" title="5 API" href="http://www.w3.org/TR/notifications/">
|
|
<meta name="flags" content="interact">
|
|
<meta name="assert" content="The icon attribute set valid URL, then notificaiton icon content will show a pictrue.">
|
|
<body>
|
|
<p><strong>Make sure connect to network.</strong></p>
|
|
<p>Test passes if a notificaiton popups with a cat pictrue.</p>
|
|
<script>
|
|
var notification = new Notification("New Email Received", {
|
|
body: "Room 101",
|
|
icon: "http://test.csswg.org/source/support/cat.png"
|
|
});
|
|
</script>
|
|
</body>
|
|
|