Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / apps / background-simple / background.html
1 <!DOCTYPE html>
2 <!--
3  * Copyright (c) 2009 The Chromium Authors. All rights reserved.  Use of this
4  * source code is governed by a BSD-style license that can be found in the
5  * LICENSE file.
6 -->
7 <html>
8   <script>
9     new Notification("Simple Background App", {
10       body: "A background window has been created"
11     });
12   </script>
13 </html>