Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: chrome/notification.html

Issue 6182748523855872: Issue 1518 - Got rid of deprecated code using webkitNotifications (Closed)
Patch Set: Use addEventListener() Created Jan. 13, 2015, 12:29 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « background.js ('k') | metadata.common » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 body
6 {
7 background-color: #f8f6f2;
8 font-family: Arial, sans;
9 font-size: 12px;
10 /* Notifications are not resized dynamically so we need to make it as bi g as possible */
11 height: 144px;
12 }
13
14 #notification
15 {
16 position: absolute;
17 top: 5px;
18 left: 65px;
19 }
20
21 #notification>h1
22 {
23 font-size: 16px;
24 }
25
26 #notification>*
27 {
28 margin: 5px;
29 }
30 </style>
31 <script src="i18n.js"></script>
32 <script src="notification.js"></script>
33 </head>
34 <body>
35 <img src="icons/abp-48.png">
36 <div id="notification">
37 <h1 id="notification-title"></h1>
38 <p id="notification-message"></p>
39 <div id="notification-question">
40 <button id="notification-yes" class="i18n_overlay_notification_button_ye s"></button>
41 <button id="notification-no" class="i18n_overlay_notification_button_no" ></button>
42 <a id="notification-close" href="#" class="i18n_overlay_notification_but ton_close"></a>
43 </div>
44 </div>
45 </body>
46 </html>
OLDNEW
« no previous file with comments | « background.js ('k') | metadata.common » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld