Hi WHATWG,<br><br>There have been discussions in the past about building notifications (&quot;toasts&quot;) as a way for workers, especially persistent workers, to have a form of UI.  It&#39;s not spec&#39;d in HTML5 at the moment, but I&#39;m currently working on an implementation in Chromium and wanted to get broader feedback on the design we&#39;re working from.  Here&#39;s our design doc.  Thoughts?<br>

<br>Thanks, <br>  -John<br><br><br><u><b>Notifications for Persistent Workers</b></u><br><br><b>Background</b><br><br>Persistent workers run scripts in the background, potentially in the absence of open tabs connected to that worker script.  This document describes a way for these scripts to interact with the user through notifications: &quot;toasts&quot; which appear on the user&#39;s desktop, outside of any tab.<br>
<br>QUESTION: Dedicated and shared workers, though able to interact with the user through open tabs, also have compelling use cases where desktop UI serves better than in-tab UI (e.g., Calendar alerts and &quot;New Email&quot; notifications). Should this be extended to all such contexts?  There are implementation benefits to limiting notifications to shared workers (avoiding duplication of notifications, etc.), but this may present a burden to developers who wish to incorporate notifications in a webapp with minimal effort.  This document will limit itself to the application in shared &amp; persistent workers.<br>
<br><b>Capabilities</b><br><br>User-agents may implement desktop notifications in different ways.  The strongest form provides full HTML display, where a URL is loaded and presented in a small desktop balloon. In some environments structured notifications (icon, title, text) are more canonical, e.g., Ubuntu&#39;s libnotify and Growl.  <br>
<br>In addition, HTML5 browsers which do not have a &quot;desktop&quot; in the traditional sense, such as those on a mobile device, may wish to implement notifications using text-only, text-plus-icon, or other structured notifications.  For example, Palm OS offers structured notifications on mobile devices, but not full HTML.  For greatest compatibility, the spec should provide alternatives for these different environments.<br>
<br>When HTML notifications are used, they should act like normal browser windows, including stylesheets and script functionality, with the exception that links causing a location change should always open in a new tab.  <br>
<br><b>Proposed Specification</b><br><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">SharedWorkerGlobalScope {</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> ...</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> readonly attribute Notifications notifications;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">};</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">interface Notifications {</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> NotificationObject createHTMLNotification(URL url);</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> NotificationObject createNotification(StructuredNotification n);</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> </span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> /* see &quot;Permissions&quot; below */</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> readonly attribute boolean trusted;   </span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> void requestTrust();</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">};</span><br><br>In the Notifications interface, user agents may leave undefined createHTMLNotification() if they do not support HTML notifications.<br>
<br><span style="font-family: courier new,monospace;">[nointerface] interface StructuredNotification {</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> DOMString title;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> DOMString /* URL */ icon;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> DOMString body;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> /* ... perhaps other fields can be optional ... */</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">};</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">interface NotificationObject {</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> boolean show();  /* show (queue for display) the notification. throws on repeat calls. */</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> boolean cancel();  /* close the notification if displayed; cancel it if not yet */</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> attribute boolean sticky;</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> attribute EventListener ondisplay;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> attribute EventListener onerror;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> attribute EventListener onclose;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> /* ... perhaps other events ... */</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">}</span><br><br>Applications&#39; worker scripts can use standard normal capabilities-checking techniques to choose which function to call, HTML or structured.<br><br>Notifications may be &#39;sticky&#39;, meaning the toast is shown until dismissed by the user, but by default they are not sticky, and will be removed after a period of time which is controlled by the user-agent and underlying desktop based on its own display properties.  A worker script may attempt to change the stickiness before showing, although this change may not be successful if not allowed by the environment (e.g., Ubuntu&#39;s libnotify does not support sticky notifications at all). <br>
<br>Before showing a notification, the worker script can register for event callbacks defined above. All callbacks are asynchronous.<br><ul><li>&quot;ondisplay&quot;: when the notification is actually shown to the user.  If it is queued for UI space limitations, this may be deferred.  This event allows scripts to control notification display intervals more precisely if desired.<br>
</li><li>&quot;onerror&quot;: if the notification cannot be shown for some reason, for example if the URL provided generates an error response. <br></li><li>&quot;onclose&quot;: when the notification is closed by the user or by the notification provider.  Non-sticky notifications may close themselves automatically, thus the &#39;onclose&#39; event should include an &quot;explicit&quot; attribute which indicates if the user took an action to dismiss the notification.</li>
</ul><br><b>Example</b><br><br><span style="font-family: courier new,monospace;">if (notifications) {</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  var n;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">  if (typeof(notifications.createHTMLNotification) != &quot;undefined&quot;) {</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">    n = notifications.createHTMLNotification(&quot;/ui/event_starting?id=31415&amp;title=Team+Meeting&amp;location=Room+1200&amp;time=1700&quot;);</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">  } else {</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">    n = notifications.createNotification({icon: &quot;/images/event.png&quot;, title: &quot;Team Meeting&quot;, body : &quot;Room 1200, 5:00pm&quot;});</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">  }</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  n.sticky = true;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">  n.onclose = function(e) { if (e.explicit) { /* ping server, mark event acknowledged */ } };</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  n.show();</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">}</span><br><br><b>Permissions</b><br><br>As with any UI elements, the potential exists to annoy users by misuse of the feature. If notifications are available to non-persistent workers or pages, it can be mitigated by separating applications into trust zones defined by the user-agent, where trust is granted by the user. Since persistent workers require installation permission, user agents might combine notification permission with install permission.<br>
<br>Desktop placement is limited to trusted origins; untrusted origins&#39; notifications can be shown within a browser tab rather than on the desktop (like a non-modal alert dialog, with the queueing benefits of the notifications system).  <br>
<br>Scripts can determine if they are trusted by checking the notifications.trusted attribute and can use notifications.requestTrust() to request permission from the user to become trusted, through an info-bar or other conventional permissions flow at the discretion of the user agent.<br>
<br><b>Security/Phishing</b><br><br>When the notification bubbles are shown outside the browser window, and contain fully interactive HTML, there is a potential concern that a compromised or misbehaving worker script might create a phishing opportunity by requesting user input in a notification bubble.  <br>
<br>It is recommended that HTML notification bubbles always contain a recognizable browser frame, which displays the origin source of the bubble and identifies HTTPS and other security elements in a standard way.  <br><b><br>
Offline Use/Application Cache</b><br><br>Some notifications have a strong offline use case, such as calendar reminders.  To make the necessary icon images and HTML notification templates available offline, HTML notification windows should have access to the same application cache as the worker which created them, if present, or follow the normal application cache selection algorithm for new windows.<br>