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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/app_launcher/popup.html

Issue 8309001: Adding `content_security_policy` to a few sample extensions. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: License and whitespace. Created 9 years, 1 month 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
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 * Copyright (c) 2010 The Chromium Authors. All rights reserved. 3 * Copyright (c) 2010 The Chromium Authors. All rights reserved.
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <link rel="stylesheet" type="text/css" href="popup.css"> 9 <link rel="stylesheet" type="text/css" href="popup.css">
10 <script src="popup.js"></script> 10 <script src="popup.js"></script>
11 </head> 11 </head>
12 <body onload="onLoad()"> 12 <body>
13 13
14 <div id="spacer_dummy"></div> 14 <div id="spacer_dummy"></div>
15 <div id="outer"> 15 <div id="outer">
16 16
17 <div id="appstore_link" style="display:none"> 17 <div id="appstore_link">
18 <p>No apps installed.</p><p> 18 <p>No apps installed.</p><p>
19 <a href='javascript:chrome.tabs.create({"url":"https://chrome.google.com/webstor e", "selected":true});window.close();'>Go get some</a></p> 19 <button>Go get some</button></p>
20 </div> 20 </div>
21 21
22 <div id="search_container"> 22 <div id="search_container">
23 <input id="search" type="text" placeholder="type to search" 23 <input id="search" type="text" placeholder="type to search" spellcheck="false" >
24 oninput="onSearchInput()" spellcheck="false">
25 </div> 24 </div>
26 25
27 <div id="apps"></div> 26 <div id="apps"></div>
28 27
29 </div> 28 </div>
30 29
31 </body> 30 </body>
32 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698