| OLD | NEW |
| (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> | |
| OLD | NEW |