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

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

Issue 971323002: Added missing Privacy And Security Settings to Content Settings Sample extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/api/contentSettings/popup.js » ('j') | 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 <html> 2 <html>
3 <head> 3 <head>
4 <title>Popup</title> 4 <title>Popup</title>
5 <style>
6 dt { white-space: nowrap }
7 </style>
5 <script src="popup.js"></script> 8 <script src="popup.js"></script>
6 </head> 9 </head>
7 <body> 10 <body>
8 <fieldset> 11 <fieldset>
9 <dl> 12 <dl>
10 <dt><label for="cookies">Cookies: </label></dt> 13 <dt><label for="cookies">Cookies: </label></dt>
11 <dd><select id="cookies"> 14 <dd><select id="cookies" disabled>
12 <option value="allow">Allow</option> 15 <option value="allow">Allow</option>
13 <option value="session_only">Session only</option> 16 <option value="session_only">Session only</option>
14 <option value="block">Block</option> 17 <option value="block">Block</option>
15 </select></dd> 18 </select></dd>
16 <dt><label for="images">Images: </label></dt> 19 <dt><label for="images">Images: </label></dt>
17 <dd><select id="images"> 20 <dd><select id="images" disabled>
18 <option value="allow">Allow</option> 21 <option value="allow">Allow</option>
19 <option value="block">Block</option> 22 <option value="block">Block</option>
20 </select> 23 </select>
21 <dt><label for="javascript">Javascript: </label></dt> 24 <dt><label for="javascript">Javascript: </label></dt>
22 <dd><select id="javascript"> 25 <dd><select id="javascript" disabled>
23 <option value="allow">Allow</option>
24 <option value="block">Block</option>
25 </select></dd>
26 <dt><label for="plugins">Plug-ins: </label></dt>
27 <dd><select id="plugins">
28 <option value="allow">Allow</option>
29 <option value="block">Block</option>
30 </select></dd>
31 <dt><label for="popups">Pop-ups: </label></dt>
32 <dd><select id="popups">
33 <option value="allow">Allow</option> 26 <option value="allow">Allow</option>
34 <option value="block">Block</option> 27 <option value="block">Block</option>
35 </select></dd> 28 </select></dd>
36 <dt><label for="location">Location: </label></dt> 29 <dt><label for="location">Location: </label></dt>
37 <dd><select id="location" disabled> 30 <dd><select id="location" disabled>
38 <option value="allow">Allow</option> 31 <option value="allow">Allow</option>
39 <option value="ask">Ask</option> 32 <option value="ask">Ask</option>
40 <option value="block">Block</option> 33 <option value="block">Block</option>
41 </select></dd> 34 </select></dd>
35 <dt><label for="plugins">Plug-ins: </label></dt>
36 <dd><select id="plugins" disabled>
37 <option value="allow">Allow</option>
38 <option value="block">Block</option>
39 </select></dd>
40 <dt><label for="popups">Pop-ups: </label></dt>
41 <dd><select id="popups" disabled>
42 <option value="allow">Allow</option>
43 <option value="block">Block</option>
44 </select></dd>
42 <dt><label for="notifications">Notifications: </label></dt> 45 <dt><label for="notifications">Notifications: </label></dt>
43 <dd><select id="notifications"> 46 <dd><select id="notifications" disabled>
44 <option value="allow">Allow</option> 47 <option value="allow">Allow</option>
45 <option value="ask">Ask</option> 48 <option value="ask">Ask</option>
46 <option value="block">Block</option> 49 <option value="block">Block</option>
50 </select></dd>
51 <dt><label for="fullscreen">Fullscreen: </label></dt>
52 <dd><select id="fullscreen" disabled>
53 <option value="allow">Allow</option>
54 <option value="ask">Ask</option>
55 </select></dd>
56 <dt><label for="mouselock">Mouse cursor: </label></dt>
57 <dd><select id="mouselock" disabled>
58 <option value="allow">Allow</option>
59 <option value="ask">Ask</option>
60 <option value="block">Block</option>
61 </select></dd>
62 <dt><label for="microphone">Microphone: </label></dt>
63 <dd><select id="microphone" disabled>
64 <option value="allow">Allow</option>
65 <option value="ask">Ask</option>
66 <option value="block">Block</option>
67 </select></dd>
68 <dt><label for="camera">Camera: </label></dt>
69 <dd><select id="camera" disabled>
70 <option value="allow">Allow</option>
71 <option value="ask">Ask</option>
72 <option value="block">Block</option>
73 </select></dd>
74 <dt><label for="unsandboxedPlugins">Unsandboxed plug-in access: </label> </dt>
75 <dd><select id="unsandboxedPlugins" disabled>
76 <option value="allow">Allow</option>
77 <option value="ask">Ask</option>
78 <option value="block">Block</option>
79 </select></dd>
80 <dt><label for="automaticDownloads">Automatic Downloads: </label></dt>
81 <dd><select id="automaticDownloads" disabled>
82 <option value="allow">Allow</option>
83 <option value="ask">Ask</option>
84 <option value="block">Block</option>
47 </select></dd> 85 </select></dd>
48 </dl> 86 </dl>
49 </fieldset> 87 </fieldset>
50 88
51 89
52 </body> 90 </body>
53 </html> 91 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/api/contentSettings/popup.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698