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

Unified 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.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « background.js ('k') | metadata.common » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/notification.html
===================================================================
deleted file mode 100644
--- a/chrome/notification.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <style>
- body
- {
- background-color: #f8f6f2;
- font-family: Arial, sans;
- font-size: 12px;
- /* Notifications are not resized dynamically so we need to make it as big as possible */
- height: 144px;
- }
-
- #notification
- {
- position: absolute;
- top: 5px;
- left: 65px;
- }
-
- #notification>h1
- {
- font-size: 16px;
- }
-
- #notification>*
- {
- margin: 5px;
- }
- </style>
- <script src="i18n.js"></script>
- <script src="notification.js"></script>
- </head>
- <body>
- <img src="icons/abp-48.png">
- <div id="notification">
- <h1 id="notification-title"></h1>
- <p id="notification-message"></p>
- <div id="notification-question">
- <button id="notification-yes" class="i18n_overlay_notification_button_yes"></button>
- <button id="notification-no" class="i18n_overlay_notification_button_no"></button>
- <a id="notification-close" href="#" class="i18n_overlay_notification_button_close"></a>
- </div>
- </div>
- </body>
-</html>
« no previous file with comments | « background.js ('k') | metadata.common » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld