summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/examples/apps/background-simple/background.html
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/extensions/docs/examples/apps/background-simple/background.html')
-rw-r--r--chrome/common/extensions/docs/examples/apps/background-simple/background.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/chrome/common/extensions/docs/examples/apps/background-simple/background.html b/chrome/common/extensions/docs/examples/apps/background-simple/background.html
new file mode 100644
index 0000000..12d906e
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/apps/background-simple/background.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<!--
+ * Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
+ * source code is governed by a BSD-style license that can be found in the
+ * LICENSE file.
+-->
+<html>
+ <script>
+ var notification = webkitNotifications.createNotification("",
+ "Simple Background App",
+ "A background window has been created");
+ notification.show();
+ </script>
+</html>