Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(623)

Side by Side Diff: chrome/common/extensions/docs/examples/api/notifications/error.html

Issue 8309001: Adding `content_security_policy` to a few sample extensions. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: License and whitespace. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!--
2 An error page for browsers that don't implement notifications.
3
4 Copyright 2010 the Chromium Authors
5
6 Use of this source code is governed by a BSD-style license that can be found
7 in the "LICENSE" file.
8
9 Brian Kennish <bkennish@chromium.org>
10 -->
11 <title>Notification Demo</title>
12 <style>
13 /* Clone the look and feel of "chrome://" pages. */
14 body {
15 margin: 10px;
16 font: 84% Arial, sans-serif
17 }
18
19 h1 { font-size: 156% }
20
21 h1 img {
22 margin: 1px 5px 0 1px;
23 vertical-align: middle
24 }
25
26 h2 {
27 border-top: 1px solid #9cc2ef;
28 background-color: #ebeff9;
29 padding: 3px 5px;
30 font-size: 100%
31 }
32 </style>
33 <h1>
34 <img src="64.png" alt="Toast">
35 Notification Demo
36 </h1>
37 <h2>Error</h2>
38 <p>
39 Desktop notifications are supported only by Google Chrome 4 and up on Windows
40 and Google Chrome 5 and up on the Mac and Linux.
41 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698