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

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

Issue 27635002: Content settings for <audio> and <video>. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test fix. Created 6 years, 5 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 <script src="popup.js"></script> 5 <script src="popup.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <fieldset> 8 <fieldset>
9 <dl> 9 <dl>
10 <dt><label for="cookies">Cookies: </label></dt> 10 <dt><label for="cookies">Cookies: </label></dt>
11 <dd><select id="cookies"> 11 <dd><select id="cookies">
12 <option value="allow">Allow</option> 12 <option value="allow">Allow</option>
13 <option value="session_only">Session only</option> 13 <option value="session_only">Session only</option>
14 <option value="block">Block</option> 14 <option value="block">Block</option>
15 </select></dd> 15 </select></dd>
16 <dt><label for="images">Images: </label></dt> 16 <dt><label for="images">Images: </label></dt>
17 <dd><select id="images"> 17 <dd><select id="images">
18 <option value="allow">Allow</option> 18 <option value="allow">Allow</option>
19 <option value="block">Block</option> 19 <option value="block">Block</option>
20 </select> 20 </select>
21 <dt><label for="javascript">Javascript: </label></dt> 21 <dt><label for="javascript">Javascript: </label></dt>
22 <dd><select id="javascript"> 22 <dd><select id="javascript">
23 <option value="allow">Allow</option> 23 <option value="allow">Allow</option>
24 <option value="block">Block</option> 24 <option value="block">Block</option>
25 </select></dd> 25 </select></dd>
26 <dt><label for="">Media: </label></dt>
27 <dd><select id="media">
28 <option value="allow">Allow</option>
29 <option value="block">Block</option>
30 </select>
26 <dt><label for="plugins">Plug-ins: </label></dt> 31 <dt><label for="plugins">Plug-ins: </label></dt>
27 <dd><select id="plugins"> 32 <dd><select id="plugins">
28 <option value="allow">Allow</option> 33 <option value="allow">Allow</option>
29 <option value="block">Block</option> 34 <option value="block">Block</option>
30 </select></dd> 35 </select></dd>
31 <dt><label for="popups">Pop-ups: </label></dt> 36 <dt><label for="popups">Pop-ups: </label></dt>
32 <dd><select id="popups"> 37 <dd><select id="popups">
33 <option value="allow">Allow</option> 38 <option value="allow">Allow</option>
34 <option value="block">Block</option> 39 <option value="block">Block</option>
35 </select></dd> 40 </select></dd>
36 <dt><label for="location">Location: </label></dt> 41 <dt><label for="location">Location: </label></dt>
37 <dd><select id="location" disabled> 42 <dd><select id="location" disabled>
38 <option value="allow">Allow</option> 43 <option value="allow">Allow</option>
39 <option value="ask">Ask</option> 44 <option value="ask">Ask</option>
40 <option value="block">Block</option> 45 <option value="block">Block</option>
41 </select></dd> 46 </select></dd>
42 <dt><label for="notifications">Notifications: </label></dt> 47 <dt><label for="notifications">Notifications: </label></dt>
43 <dd><select id="notifications"> 48 <dd><select id="notifications">
44 <option value="allow">Allow</option> 49 <option value="allow">Allow</option>
45 <option value="ask">Ask</option> 50 <option value="ask">Ask</option>
46 <option value="block">Block</option> 51 <option value="block">Block</option>
47 </select></dd> 52 </select></dd>
48 </dl> 53 </dl>
49 </fieldset> 54 </fieldset>
50 55
51 56
52 </body> 57 </body>
53 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698