HomeSort by relevance Sort by last modified time
    Searched refs:activeElement (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
focus_util.js 66 var activeElement = document.activeElement;
68 if (!activeElement) {
72 if (activeElement.isContentEditable) {
76 if (activeElement.getAttribute('role') == 'textbox') {
80 if (activeElement.getAttribute('readOnly') == 'true') {
84 if (activeElement.tagName === 'TEXTAREA' ||
85 activeElement.tagName === 'SELECT') {
89 if (activeElement.tagName === 'INPUT') {
90 if (!activeElement.hasAttribute('type'))
    [all...]
focuser.js 33 if (document.activeElement &&
34 !cvox.DomUtil.isDescendantOfNode(targetNode, document.activeElement)) {
35 document.activeElement.blur();
83 } else if (document.activeElement &&
84 document.activeElement.tagName != 'BODY') {
85 document.activeElement.blur();
braille_util.js 247 if (node === document.activeElement &&
267 if (node === document.activeElement) {
396 if (document.activeElement !== node) {
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
content_script.js 10 var focused = document.activeElement;
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ShadowRoot.idl 28 readonly attribute Element activeElement;
ShadowRoot.h 116 Element* activeElement() const;
161 inline Element* ShadowRoot::activeElement() const
  /external/chromium_org/chrome/test/chromedriver/js/
focus.js 17 // - |document.activeElement| is the currently focused element, or body if
27 var prevActiveElement = doc.activeElement;
41 if (element != doc.activeElement)
  /external/chromium_org/third_party/WebKit/Source/web/resources/
suggestionPicker.js 259 if (document.activeElement && document.activeElement.classList.contains(SuggestionPicker.ListEntryClass)) {
260 for (var node = document.activeElement.previousElementSibling; node; node = node.previousElementSibling) {
272 if (document.activeElement && document.activeElement.classList.contains(SuggestionPicker.ListEntryClass)) {
273 for (var node = document.activeElement.nextElementSibling; node; node = node.nextElementSibling) {
285 this.selectEntry(document.activeElement);
320 if (!document.activeElement.classList.contains(SuggestionPicker.ListEntryClass))
323 document.activeElement.blur();
  /external/chromium_org/chrome/browser/resources/chromeos/keyboard/
keyboard_utils.js 45 keyboard.raiseKeyFocusPrevious(document.activeElement);
50 keyboard.raiseKeyFocusNext(document.activeElement);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
initial_speech.js 61 // If our activeElement is on body, try to sync to the first element. This
65 if (document.hasFocus() && document.activeElement == document.body) {
user_commands.js 172 if ((document.activeElement.tagName == tagName) ||
173 cvox.DomUtil.isControl(document.activeElement)) {
188 if (previousDummySpan && document.activeElement != previousDummySpan) {
510 var activeElement = document.activeElement;
514 if (activeElement.tagName == 'A') {
515 url = cvox.DomUtil.getLinkURL(activeElement);
533 if (cvox.DomPredicates.linkPredicate([document.activeElement])) {
534 if (cvox.DomUtil.isInternalLink(document.activeElement)) {
536 cvox.DomUtil.syncInternalLink(document.activeElement);
    [all...]
event_watcher.js 760 if (!document.activeElement) {
880 cvox.DomPredicates.editTextPredicate([document.activeElement])) &&
881 document.activeElement.type !== 'password') {
938 if (document.activeElement == evt.target) {
939 cvox.ChromeVoxEventWatcher.handleControlChanged(document.activeElement);
    [all...]
navigation_manager.js 103 // NOTE(deboer): document.activeElement can not be null (c.f.
104 // https://developer.mozilla.org/en-US/docs/DOM/document.activeElement)
105 // Instead, if there is no active element, activeElement is set to
108 * If there is an activeElement, use it. Otherwise, sync to the page
113 this.curSel_ = document.activeElement != document.body ?
115 (cvox.CursorSelection.fromNode(document.activeElement)) :
213 // Only sync if the activeElement is not document.body; which is shorthand for
216 if (document.activeElement != document.body) {
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
abstract_host.js 145 if (document.activeElement) {
148 document.activeElement, speakNodeAlso);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
View.js 440 if (!element || element.isAncestor(document.activeElement))
451 var activeElement = document.activeElement;
452 return activeElement && activeElement.isSelfOrDescendant(this.element);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
braille.js 52 if (!document.hasFocus() || document.activeElement.tagName == 'IFRAME') {
  /external/chromium_org/ui/accessibility/extensions/caretbrowsing/
caretbrowsing.js 256 if (node == document.body || node != document.activeElement) {
565 if (CaretBrowsing.isControlThatNeedsArrowKeys(document.activeElement)) {
566 var node = document.activeElement;
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
manage_profile_browsertest.js 103 expectEquals(initialFocus, document.activeElement, pageName);
107 expectEquals(expectedFocus, document.activeElement, pageName);
286 expectEquals(nameField, document.activeElement);
293 expectEquals($('manage-profile-ok'), document.activeElement);
328 expectEquals($('supervised-user-created-switch'), document.activeElement);
  /external/chromium_org/chrome/browser/resources/bookmark_manager/js/
main.js 272 if (document.activeElement != input)
459 e.canExecute = e.currentTarget.activeElement !== $('term');
778 return (opt_target || document.activeElement) == tree ?
929 if (document.activeElement == tree)
941 if (document.activeElement == tree) {
967 if (document.activeElement == tree) {
1094 if (document.activeElement == tree)
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
options.js 160 if (document.activeElement.id == 'toggleKeyPrefix') {
183 if (cvox.OptionsPage.prefs.setKey(document.activeElement.id,
185 document.activeElement.value = keySeqStr;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/
widget.js 85 this.initialFocus = document.activeElement;
  /external/chromium_org/remoting/webapp/js_proto/
dom_proto.js 10 Document.prototype.activeElement;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.idl 160 readonly attribute Element activeElement;
  /external/chromium_org/chrome/browser/resources/local_ntp/
local_ntp.js 1049 var activeElement = document.activeElement;
1050 if (activeElement.classList.contains(CLASSES.TITLE)) {
1051 activeElement.classList.add(CLASSES.FOCUSED);
1052 focusedIframe = activeElement;
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
mathjax_external_util.js 241 document.activeElement.appendChild(script);
256 document.activeElement.appendChild(script);

Completed in 1343 milliseconds

1 2 3