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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/notification/galore/app/window.html
diff --git a/chrome/test/data/extensions/api_test/notification/galore/app/window.html b/chrome/test/data/extensions/api_test/notification/galore/app/window.html
new file mode 100644
index 0000000000000000000000000000000000000000..dd1cc4dc85a49748cd5a1fa21b58ad1f51883318
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/notification/galore/app/window.html
@@ -0,0 +1,36 @@
+<!DOCTYPE HTML>
+<!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
+ -- Use of this source code is governed by a BSD-style license that can be
+ -- found in the LICENSE file. -->
+<html>
+ <head>
+ <title>Garrulous</title>
+ <link rel="stylesheet" type="text/css" href="style.css" />
+ </head>
+ <body>
+ <button id="close"></button>
+ <div id="templates">
+ <div class="section"><h1><span/></h1></div>
+ <div class="event"></div>
+ <button><img src="images/white-64x64.png"></button>
+ </div>
+ <div>
+ <h1><span>Priority</span></h1>
+ <form name="priority" id="priority">
+ <label><input type="radio" name="priority" value="-2">-2</label>
+ <label><input type="radio" name="priority" value="-1">-1</label>
+ <label>
+ <input type="radio" name="priority" value="0" checked="true">0
+ </label>
+ <label><input type="radio" name="priority" value="1">1</label>
+ <label><input type="radio" name="priority" value="2">2</label>
+ </div>
+ </div>
+ <div id="sections"></div>
+ <div id="events">
+ <h1><span>Events</span></h1>
+ <div id="events-scroll"></div>
+ <div id="events-fade"></div>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698