repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
chrome
/
common
/
extensions
/
docs
/
examples
/
apps
/
background-simple
/
background.html
blob
7095d3f1f93c95969098bf3967dc4a077da9e1f0
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>