Home | History | Annotate | Download | only in background-simple
      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     var notification = webkitNotifications.createNotification("",
     10         "Simple Background App",
     11         "A background window has been created");
     12     notification.show();
     13   </script>
     14 </html>
     15