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

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

Issue 2397633002: Remove fullscreen and mouselock from contentSettings API sample. (Closed)
Patch Set: Created 4 years, 2 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> 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 30 matching lines...) Expand all
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>
46 <dd><select id="notifications" disabled> 46 <dd><select id="notifications" disabled>
47 <option value="allow">Allow</option> 47 <option value="allow">Allow</option>
48 <option value="ask">Ask</option> 48 <option value="ask">Ask</option>
49 <option value="block">Block</option> 49 <option value="block">Block</option>
50 </select></dd> 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> 51 <dt><label for="microphone">Microphone: </label></dt>
63 <dd><select id="microphone" disabled> 52 <dd><select id="microphone" disabled>
64 <option value="allow">Allow</option> 53 <option value="allow">Allow</option>
65 <option value="ask">Ask</option> 54 <option value="ask">Ask</option>
66 <option value="block">Block</option> 55 <option value="block">Block</option>
67 </select></dd> 56 </select></dd>
68 <dt><label for="camera">Camera: </label></dt> 57 <dt><label for="camera">Camera: </label></dt>
69 <dd><select id="camera" disabled> 58 <dd><select id="camera" disabled>
70 <option value="allow">Allow</option> 59 <option value="allow">Allow</option>
71 <option value="ask">Ask</option> 60 <option value="ask">Ask</option>
(...skipping 10 matching lines...) Expand all
82 <option value="allow">Allow</option> 71 <option value="allow">Allow</option>
83 <option value="ask">Ask</option> 72 <option value="ask">Ask</option>
84 <option value="block">Block</option> 73 <option value="block">Block</option>
85 </select></dd> 74 </select></dd>
86 </dl> 75 </dl>
87 </fieldset> 76 </fieldset>
88 77
89 78
90 </body> 79 </body>
91 </html> 80 </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