HomeSort by relevance Sort by last modified time
    Searched refs:activeElement (Results 1 - 25 of 53) 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/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/core/dom/shadow/
ShadowRoot.h 114 Element* activeElement() const;
159 inline Element* ShadowRoot::activeElement() const
ShadowRoot.idl 28 readonly attribute Element 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 41 keyboard.raiseKeyFocusPrevious(document.activeElement);
46 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 756 if (!document.activeElement) {
864 cvox.DomPredicates.editTextPredicate([document.activeElement])) &&
865 document.activeElement.type !== 'password') {
922 if (document.activeElement == evt.target) {
923 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...]
navigation_history.js 126 var active = document.activeElement;
  /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 441 if (!element || element.isAncestor(document.activeElement))
452 var activeElement = document.activeElement;
453 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/remoting/webapp/js_proto/
dom_proto.js 10 Document.prototype.activeElement;
  /external/chromium_org/chrome/browser/ui/webui/options/
manage_profile_browsertest.js 100 expectEquals(initialFocus, document.activeElement, pageName);
104 expectEquals(expectedFocus, document.activeElement, pageName);
283 expectEquals(nameField, document.activeElement);
290 expectEquals($('manage-profile-ok'), document.activeElement);
325 expectEquals($('managed-user-created-switch'), document.activeElement);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/
widget.js 85 this.initialFocus = document.activeElement;
  /external/chromium_org/chrome/browser/resources/bookmark_manager/js/
main.js 272 if (document.activeElement != input)
783 return (opt_target || document.activeElement) == tree ?
934 if (document.activeElement == tree)
946 if (document.activeElement == tree) {
972 if (document.activeElement == tree) {
1099 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/third_party/chromevox/chromevox/injected/
mathjax_external_util.js 241 document.activeElement.appendChild(script);
256 document.activeElement.appendChild(script);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.idl 160 readonly attribute Element activeElement;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/search/
AdvancedSearchView.js 372 if (!searchView.isShowing() || searchView._search !== document.activeElement) {

Completed in 638 milliseconds

1 2 3