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

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

Issue 12211020: Added "Notifications Galore!" notification test app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed copyright message for commit checks. Created 7 years, 10 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
(Empty)
1 <!DOCTYPE HTML>
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
4 -- found in the LICENSE file. -->
5 <html>
6 <head>
7 <title>Garrulous</title>
8 <link rel="stylesheet" type="text/css" href="style.css" />
9 </head>
10 <body>
11 <button id="close"></button>
12 <div id="templates">
13 <div class="section"><h1><span/></h1></div>
14 <div class="event"></div>
15 <button><img src="images/white-64x64.png"></button>
16 </div>
17 <div>
18 <h1><span>Priority</span></h1>
19 <form name="priority" id="priority">
20 <label><input type="radio" name="priority" value="-2">-2</label>
21 <label><input type="radio" name="priority" value="-1">-1</label>
22 <label>
23 <input type="radio" name="priority" value="0" checked="true">0
24 </label>
25 <label><input type="radio" name="priority" value="1">1</label>
26 <label><input type="radio" name="priority" value="2">2</label>
27 </div>
28 </div>
29 <div id="sections"></div>
30 <div id="events">
31 <h1><span>Events</span></h1>
32 <div id="events-scroll"></div>
33 <div id="events-fade"></div>
34 </div>
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698