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

Side by Side Diff: chrome/test/data/extensions/api_test/notifications/galore/app/window.html

Issue 315053006: Refactor Notifications Galore to simplify, amke more hackable and add 'recording'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cr feedback Created 6 years, 6 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
« no previous file with comments | « chrome/test/data/extensions/api_test/notifications/galore/app/view.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 -- Use of this source code is governed by a BSD-style license that can be 3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file. --> 4 -- found in the LICENSE file. -->
5 <html> 5 <html>
6 <head> 6 <head>
7 <title>Notifications Galore!</title> 7 <title>Notifications Galore!</title>
8 <link rel="stylesheet" type="text/css" href="style.css" /> 8 <link rel="stylesheet" type="text/css" href="style.css" />
9 </head> 9 </head>
10 <body data-active="" data-popup="false"> 10 <body data-active="">
11 <div id="templates"> 11 <div id="templates">
12 <div class="section"><h1><span/></h1></div> 12 <div class="section"><h1><span/></h1></div>
13 <div class="event"></div> 13 <div class="event"></div>
14 <div class="error"></div> 14 <div class="error"></div>
15 <div class="spacer"></div> 15 <div class="spacer"></div>
16 <button class="notification"> 16 <button class="notification borderless">
17 <img src="images/white-40x40.png"> 17 <img src="images/white-40x40.png">
18 </button> 18 </button>
19 </div> 19 </div>
20 <div id="priority" class="section"> 20 <div id="priority" class="section">
21 <h1><span>Priority</span></h1> 21 <h1><span>Priority</span></h1>
22 <button class="priority" data-priority="-2">-2</button> 22 <button class="priority borderless" data-priority="-2">-2</button>
23 <button class="priority" data-priority="-1">-1</button> 23 <button class="priority borderless" data-priority="-1">-1</button>
24 <button class="priority" data-priority="0">0</button> 24 <button class="priority borderless" data-priority="0">0</button>
25 <button class="priority" data-priority="1">1</button> 25 <button class="priority borderless" data-priority="1">1</button>
26 <button class="priority" data-priority="2">2</button> 26 <button class="priority borderless" data-priority="2">2</button>
27 </div>
28 <div id="other-controls" xclass="section">
29 <h1><span>Controls</span></h1>
30 <div class="subsection">
31 <button id="clear-events">Clear Events</button>
32 </div>
33 <div class="subsection">
34 <button id="record" class="control borderless"><img src="images/record.p ng"></img></button>
35 <button id="pause" class="control borderless"><img src="images/pause.pn g"></img></button>
36 <button id="stop" class="control borderless"><img src="images/stop.png "></img></button>
37 <button id="play" class="control borderless"><img src="images/play.png "></img></button>
38 <sup id="recording-status">Stopped</sup>
39 <div id="recording-stats"> </div>
40 </div>
27 </div> 41 </div>
28 <div id="notifications"></div> 42 <div id="notifications"></div>
29 <div id="events" class="section"> 43 <h1><span>Events</span></h1>
30 <div id="events-scroll"></div> 44 <div id="events" class="section"></div>
31 <div id="events-fade"></div>
32 <h1><span>Events</span></h1>
33 </div>
34 <div id="popup">
35 <div id="shadow" class="shadow"></div>
36 <div id="menu">
37 <div id="menu-items">
38 <button id="show-settings" class="menu">Settings...</button>
39 <button id="clear-events" class="menu">Clear Events</button>
40 </div>
41 <div id="arrow"></div>
42 </div>
43 </div>
44 <button id="close" class="close" name="Close"></button>
45 <button id="show-menu" class="menu" name="Show Menu"></button>
46 </body> 45 </body>
47 </html> 46 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/notifications/galore/app/view.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698