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

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

Issue 1007443004: Plugin Power Saver: Replace all "plug-in" with "plugin" for consistency. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove terms and native_client_sdk changes. Created 5 years, 9 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Popup</title> 4 <title>Popup</title>
5 <style> 5 <style>
6 dt { white-space: nowrap } 6 dt { white-space: nowrap }
7 </style> 7 </style>
8 <script src="popup.js"></script> 8 <script src="popup.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 14 matching lines...) Expand all
25 <dd><select id="javascript" disabled> 25 <dd><select id="javascript" disabled>
26 <option value="allow">Allow</option> 26 <option value="allow">Allow</option>
27 <option value="block">Block</option> 27 <option value="block">Block</option>
28 </select></dd> 28 </select></dd>
29 <dt><label for="location">Location: </label></dt> 29 <dt><label for="location">Location: </label></dt>
30 <dd><select id="location" disabled> 30 <dd><select id="location" disabled>
31 <option value="allow">Allow</option> 31 <option value="allow">Allow</option>
32 <option value="ask">Ask</option> 32 <option value="ask">Ask</option>
33 <option value="block">Block</option> 33 <option value="block">Block</option>
34 </select></dd> 34 </select></dd>
35 <dt><label for="plugins">Plug-ins: </label></dt> 35 <dt><label for="plugins">Plugins: </label></dt>
36 <dd><select id="plugins" disabled> 36 <dd><select id="plugins" disabled>
37 <option value="allow">Allow</option> 37 <option value="allow">Allow</option>
38 <option value="block">Block</option> 38 <option value="block">Block</option>
39 </select></dd> 39 </select></dd>
40 <dt><label for="popups">Pop-ups: </label></dt> 40 <dt><label for="popups">Pop-ups: </label></dt>
41 <dd><select id="popups" disabled> 41 <dd><select id="popups" disabled>
42 <option value="allow">Allow</option> 42 <option value="allow">Allow</option>
43 <option value="block">Block</option> 43 <option value="block">Block</option>
44 </select></dd> 44 </select></dd>
45 <dt><label for="notifications">Notifications: </label></dt> 45 <dt><label for="notifications">Notifications: </label></dt>
(...skipping 18 matching lines...) Expand all
64 <option value="allow">Allow</option> 64 <option value="allow">Allow</option>
65 <option value="ask">Ask</option> 65 <option value="ask">Ask</option>
66 <option value="block">Block</option> 66 <option value="block">Block</option>
67 </select></dd> 67 </select></dd>
68 <dt><label for="camera">Camera: </label></dt> 68 <dt><label for="camera">Camera: </label></dt>
69 <dd><select id="camera" disabled> 69 <dd><select id="camera" disabled>
70 <option value="allow">Allow</option> 70 <option value="allow">Allow</option>
71 <option value="ask">Ask</option> 71 <option value="ask">Ask</option>
72 <option value="block">Block</option> 72 <option value="block">Block</option>
73 </select></dd> 73 </select></dd>
74 <dt><label for="unsandboxedPlugins">Unsandboxed plug-in access: </label> </dt> 74 <dt><label for="unsandboxedPlugins">Unsandboxed plugin access: </label>< /dt>
75 <dd><select id="unsandboxedPlugins" disabled> 75 <dd><select id="unsandboxedPlugins" disabled>
76 <option value="allow">Allow</option> 76 <option value="allow">Allow</option>
77 <option value="ask">Ask</option> 77 <option value="ask">Ask</option>
78 <option value="block">Block</option> 78 <option value="block">Block</option>
79 </select></dd> 79 </select></dd>
80 <dt><label for="automaticDownloads">Automatic Downloads: </label></dt> 80 <dt><label for="automaticDownloads">Automatic Downloads: </label></dt>
81 <dd><select id="automaticDownloads" disabled> 81 <dd><select id="automaticDownloads" disabled>
82 <option value="allow">Allow</option> 82 <option value="allow">Allow</option>
83 <option value="ask">Ask</option> 83 <option value="ask">Ask</option>
84 <option value="block">Block</option> 84 <option value="block">Block</option>
85 </select></dd> 85 </select></dd>
86 </dl> 86 </dl>
87 </fieldset> 87 </fieldset>
88 88
89 89
90 </body> 90 </body>
91 </html> 91 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698