Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / common / extensions / docs / examples / apps / background-simple / background.html
blob7095d3f1f93c95969098bf3967dc4a077da9e1f0
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>