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

Unified 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, 10 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/examples/api/contentSettings/popup.html
diff --git a/chrome/common/extensions/docs/examples/api/contentSettings/popup.html b/chrome/common/extensions/docs/examples/api/contentSettings/popup.html
index dc3c9f009d5e69c5ddc98407dc4981431396dc99..bbc62c52c8c790248201374e1c8e588e6c07cc17 100644
--- a/chrome/common/extensions/docs/examples/api/contentSettings/popup.html
+++ b/chrome/common/extensions/docs/examples/api/contentSettings/popup.html
@@ -2,45 +2,83 @@
<html>
<head>
<title>Popup</title>
+ <style>
+ dt { white-space: nowrap }
+ </style>
<script src="popup.js"></script>
</head>
<body>
<fieldset>
<dl>
<dt><label for="cookies">Cookies: </label></dt>
- <dd><select id="cookies">
+ <dd><select id="cookies" disabled>
<option value="allow">Allow</option>
<option value="session_only">Session only</option>
<option value="block">Block</option>
</select></dd>
<dt><label for="images">Images: </label></dt>
- <dd><select id="images">
+ <dd><select id="images" disabled>
<option value="allow">Allow</option>
<option value="block">Block</option>
</select>
<dt><label for="javascript">Javascript: </label></dt>
- <dd><select id="javascript">
+ <dd><select id="javascript" disabled>
<option value="allow">Allow</option>
<option value="block">Block</option>
</select></dd>
+ <dt><label for="location">Location: </label></dt>
+ <dd><select id="location" disabled>
+ <option value="allow">Allow</option>
+ <option value="ask">Ask</option>
+ <option value="block">Block</option>
+ </select></dd>
<dt><label for="plugins">Plug-ins: </label></dt>
- <dd><select id="plugins">
+ <dd><select id="plugins" disabled>
<option value="allow">Allow</option>
<option value="block">Block</option>
</select></dd>
<dt><label for="popups">Pop-ups: </label></dt>
- <dd><select id="popups">
+ <dd><select id="popups" disabled>
<option value="allow">Allow</option>
<option value="block">Block</option>
</select></dd>
- <dt><label for="location">Location: </label></dt>
- <dd><select id="location" disabled>
+ <dt><label for="notifications">Notifications: </label></dt>
+ <dd><select id="notifications" disabled>
<option value="allow">Allow</option>
<option value="ask">Ask</option>
<option value="block">Block</option>
</select></dd>
- <dt><label for="notifications">Notifications: </label></dt>
- <dd><select id="notifications">
+ <dt><label for="fullscreen">Fullscreen: </label></dt>
+ <dd><select id="fullscreen" disabled>
+ <option value="allow">Allow</option>
+ <option value="ask">Ask</option>
+ </select></dd>
+ <dt><label for="mouselock">Mouse cursor: </label></dt>
+ <dd><select id="mouselock" disabled>
+ <option value="allow">Allow</option>
+ <option value="ask">Ask</option>
+ <option value="block">Block</option>
+ </select></dd>
+ <dt><label for="microphone">Microphone: </label></dt>
+ <dd><select id="microphone" disabled>
+ <option value="allow">Allow</option>
+ <option value="ask">Ask</option>
+ <option value="block">Block</option>
+ </select></dd>
+ <dt><label for="camera">Camera: </label></dt>
+ <dd><select id="camera" disabled>
+ <option value="allow">Allow</option>
+ <option value="ask">Ask</option>
+ <option value="block">Block</option>
+ </select></dd>
+ <dt><label for="unsandboxedPlugins">Unsandboxed plug-in access: </label></dt>
+ <dd><select id="unsandboxedPlugins" disabled>
+ <option value="allow">Allow</option>
+ <option value="ask">Ask</option>
+ <option value="block">Block</option>
+ </select></dd>
+ <dt><label for="automaticDownloads">Automatic Downloads: </label></dt>
+ <dd><select id="automaticDownloads" disabled>
<option value="allow">Allow</option>
<option value="ask">Ask</option>
<option value="block">Block</option>
« 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