Home
last modified time | relevance | path

Searched refs:checkbox (Results 1 – 25 of 73) sorted by relevance

123

/external/webkit/Source/WebCore/inspector/front-end/
DBreakpointsSidebarPane.js53 var checkbox = document.createElement("input");
54 checkbox.className = "checkbox-elem";
55 checkbox.type = "checkbox";
56 checkbox.checked = breakpoint.enabled;
57checkbox.addEventListener("click", this._breakpointCheckboxClicked.bind(this, breakpoint), false);
58 element.appendChild(checkbox);
86 breakpointItem.checkbox = checkbox;
468 categoryItem.checkbox = this._createCheckbox(categoryItem.element);
469 …categoryItem.checkbox.addEventListener("click", this._categoryCheckboxClicked.bind(this, categoryI…
485 breakpointItem.checkbox = this._createCheckbox(breakpointItem.element);
[all …]
/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
Dproxy_form_controller.js192 var checkbox = document.getElementById('singleProxyForEverything');
193 return checkbox.checked ? this.httpProxy : null;
203 var checkbox = document.getElementById('singleProxyForEverything');
204 checkbox.checked = !!data;
209 if (checkbox.checked)
210 checkbox.parentNode.parentNode.classList.add('single');
212 checkbox.parentNode.parentNode.classList.remove('single');
625 var checkbox = e.target;
626 if (checkbox.nodeName === 'INPUT' &&
627 checkbox.getAttribute('type') === 'checkbox') {
[all …]
/external/chromium/chrome/browser/resources/options/
Dimport_data_overlay.js93 setUpCheckboxState_: function(checkbox, enabled) { argument
94 checkbox.disabled = !enabled;
95 checkbox.checked = enabled;
109 var checkbox = $('import-' + importOptions[i]);
110 this.setUpCheckboxState_(checkbox,
Dlanguage_options.js477 var checkbox = e.target;
478 if (this.preloadEngines_.length == 1 && !checkbox.checked) {
483 checkbox.checked = true;
486 if (checkbox.checked) {
487 chrome.send('inputMethodEnable', [checkbox.inputMethodId]);
489 chrome.send('inputMethodDisable', [checkbox.inputMethodId]);
Dadvanced_options.css7 #advancedPage > section > div:only-of-type > div.checkbox {
Doptions_page.css390 div.checkbox,
709 input[type=checkbox],
722 label > input[type=checkbox],
727 html[os=mac] label > input[type=checkbox],
732 html[os=chromeos] label > input[type=checkbox],
738 * the span containing the label (usually a checkbox or radio).
/external/chromium-trace/trace-viewer/src/
Dtimeline_category_filter_dialog.js87 var checkbox = e.target;
88 this.settings_.set(checkbox.value, checkbox.checked, 'categories');
/external/chromium/chrome/browser/accessibility/
Drenderer_accessibility_browsertest.cc141 const WebAccessibility& checkbox = body.children[1]; in IN_PROC_BROWSER_TEST_F() local
142 EXPECT_EQ(WebAccessibility::ROLE_CHECKBOX, checkbox.role); in IN_PROC_BROWSER_TEST_F()
144 "input", GetAttr(checkbox, WebAccessibility::ATTR_HTML_TAG).c_str()); in IN_PROC_BROWSER_TEST_F()
147 GetAttr(checkbox, WebAccessibility::ATTR_DISPLAY).c_str()); in IN_PROC_BROWSER_TEST_F()
148 ASSERT_EQ(1U, checkbox.html_attributes.size()); in IN_PROC_BROWSER_TEST_F()
150 "type", UTF16ToUTF8(checkbox.html_attributes[0].first).c_str()); in IN_PROC_BROWSER_TEST_F()
152 "checkbox", UTF16ToUTF8(checkbox.html_attributes[0].second).c_str()); in IN_PROC_BROWSER_TEST_F()
Dbrowser_accessibility_win_unittest.cc80 WebAccessibility checkbox; in TEST_F() local
81 checkbox.id = 3; in TEST_F()
82 checkbox.name = L"Checkbox"; in TEST_F()
83 checkbox.role = WebAccessibility::ROLE_CHECKBOX; in TEST_F()
84 checkbox.state = 0; in TEST_F()
92 root.children.push_back(checkbox); in TEST_F()
Dbrowser_accessibility_manager_unittest.cc66 WebAccessibility checkbox; in TEST() local
67 checkbox.id = 3; in TEST()
68 checkbox.name = UTF8ToUTF16("Checkbox"); in TEST()
69 checkbox.role = WebAccessibility::ROLE_CHECKBOX; in TEST()
70 checkbox.state = 0; in TEST()
78 root.children.push_back(checkbox); in TEST()
/external/chromium/chrome/browser/resources/file_manager/css/
Dfile_manager.css130 .thumbnail-item > input[type="checkbox"] {
231 .file-checkbox {
237 li.thumbnail-item .file-checkbox {
241 li.table-row:hover .file-checkbox,
242 li.thumbnail-item:hover .file-checkbox {
246 .file-checkbox:hover,
247 li.table-row[selected] .file-checkbox,
248 li.thumbnail-item[selected] .file-checkbox {
/external/clang/www/demo/
Dindex.cgi196 print $c->checkbox(
202 print $c->checkbox(
207 print $c->checkbox(
215 print $c->checkbox(
220 print $c->checkbox(
/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
Dproxy_form_controller_test.js125 var checkbox = document.getElementById('singleProxyForEverything');
126 var section = checkbox.parentNode.parentNode;
131 checkbox.checked = false;
132 checkbox.dispatchEvent(this.clickEvent_);
134 checkbox.dispatchEvent(this.clickEvent_);
/external/chromium/chrome/browser/resources/net_internals/
Dsourceentry.js168 var checkbox = addNode(selectionCol, 'input');
169 checkbox.type = 'checkbox';
179 checkbox.onchange = this.onCheckboxToggled_.bind(this);
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-values/
Ddillo7 checkbox
Dmozilla15 checkbox
Dwebkit25 checkbox
/external/chromium/chrome/browser/ui/views/
Dcreate_application_shortcut_view.cc390 views::Checkbox* checkbox = new views::Checkbox(text); in AddCheckbox() local
391 checkbox->SetChecked(checked); in AddCheckbox()
392 checkbox->set_listener(this); in AddCheckbox()
393 return checkbox; in AddCheckbox()
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-attrs/
Dgtkhtml10 checkbox
/external/webkit/Source/WebCore/html/
DCheckboxInputType.cpp49 return InputTypeNames::checkbox(); in formControlType()
DInputType.cpp81 map->add(InputTypeNames::checkbox(), CheckboxInputType::create); in createInputTypeFactoryMap()
661 const AtomicString& checkbox() in checkbox() function
/external/chromium/chrome/browser/resources/
Dprint_preview.css388 input[type='checkbox'] {
405 input[type='checkbox']:hover {
410 input[type='checkbox']:active {
419 input[type='checkbox']:checked:before {
434 input[type='checkbox']:focus,
/external/chromium/chrome/browser/ui/cocoa/
Dfirst_run_dialog.mm166 // Bound to the dialog checkbox, default to true.
207 DCHECK_NE(statsCheckbox_, view) << "Stats checkbox shouldn't be in list";
226 // The stats checkbox gets some really long text, so it gets word wrapped
259 // Special case, if this is the stats checkbox, everything above it needs
Dabout_ipc_controller_unittest.mm37 // Flip a checkbox, see it filtered, flip back, all is fine.
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-values/
Dmozilla188 checkbox
189 checkbox-container
190 checkbox-label

123