Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / apps / background-simple / background.html
index 12d906e..7095d3f 100644 (file)
@@ -6,9 +6,8 @@
 -->
 <html>
   <script>
-    var notification = webkitNotifications.createNotification("",
-        "Simple Background App",
-        "A background window has been created");
-    notification.show();
+    new Notification("Simple Background App", {
+      body: "A background window has been created"
+    });
   </script>
 </html>