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> |