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

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: pageAction/pageaction_by_url Created 9 years, 2 months 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
1 <!-- 1 <!--
2 An error page for browsers that don't implement notifications. 2 An error page for browsers that don't implement notifications.
3 3
4 Copyright 2010 the Chromium Authors 4 Copyright 2010 the Chromium Authors
Boris Smus 2011/10/18 21:51:38 Rev date.
Mike West 2011/10/19 09:43:57 Done.
5 5
6 Use of this source code is governed by a BSD-style license that can be found 6 Use of this source code is governed by a BSD-style license that can be found
7 in the "LICENSE" file. 7 in the "LICENSE" file.
8 8
9 Brian Kennish <bkennish@chromium.org> 9 Brian Kennish <bkennish@chromium.org>
10 --> 10 -->
11 <title>Notification Demo</title> 11 <!doctype html>
12 <style> 12 <html>
13 /* Clone the look and feel of "chrome://" pages. */ 13 <head>
14 body { 14 <title>Notification Demo</title>
15 margin: 10px; 15 <link href="style.css" rel="stylesheet" type="text/css">
16 font: 84% Arial, sans-serif 16 </head>
17 } 17 <body>
18 18 <h1>
19 h1 { font-size: 156% } 19 <img src="64.png" alt="Toast">
20 20 Notification Demo
21 h1 img { 21 </h1>
22 margin: 1px 5px 0 1px; 22 <h2>Error</h2>
23 vertical-align: middle 23 <p>
24 } 24 Desktop notifications are supported only by Google Chrome 4 and up on Wind ows
25 25 and Google Chrome 5 and up on the Mac and Linux.
Boris Smus 2011/10/18 21:51:38 Seems irrelevant.
Mike West 2011/10/19 09:43:57 Done.
26 h2 { 26 </p>
27 border-top: 1px solid #9cc2ef; 27 </body>
28 background-color: #ebeff9; 28 </html>
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