HomeSort by relevance Sort by last modified time
    Searched refs:autoComplete (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/public/web/
WebFormElement.h 62 BLINK_EXPORT bool autoComplete() const;
WebInputElement.h 72 BLINK_EXPORT bool autoComplete() const;
  /external/chromium_org/chrome/renderer/autofill/
form_autocomplete_browsertest.cc 52 // Tests that submitting a form that has autocomplete="off" does not generate a
56 LoadHTML("<html><form id='myForm' autocomplete='off'>"
70 // Tests that fields with autocomplete off are not submitted.
75 "<input name='lname' value='Deckard' autocomplete='off'/>"
97 // Tests that submitting a form that has been dynamically set as autocomplete
108 EXPECT_TRUE(form.autoComplete());
110 // Dynamically mark the form as autocomplete off.
112 "setAttribute('autocomplete', 'off');");
114 EXPECT_FALSE(form.autoComplete());
  /external/chromium_org/third_party/WebKit/Source/web/
WebFormElement.cpp 49 bool WebFormElement::autoComplete() const
WebInputElement.cpp 80 bool WebInputElement::autoComplete() const
  /external/chromium_org/components/autofill/content/renderer/
password_autofill_agent.cc 37 // The size above which we stop triggering autocomplete.
250 !element.autoComplete())) {
254 // Don't inline autocomplete if the user is deleting, that would be confusing.
515 // Attach autocomplete listener to enable selecting alternate logins.
634 !username_element.form().autoComplete())
640 !password_element.autoComplete()))
647 username_element.autoComplete()) &&
717 !password_element->autoComplete())) {
724 username_element->autoComplete())) {
753 // Don't inline autocomplete if the caret is not at the end
    [all...]
form_autofill_util.cc 96 return input_element.autoComplete();
733 // TODO(isherman): WebKit currently doesn't handle the autocomplete
750 CR_DEFINE_STATIC_LOCAL(WebString, kAutocomplete, ("autocomplete"));
778 field->should_autocomplete = input_element->autoComplete();
844 if (requirements & REQUIRE_AUTOCOMPLETE && !form_element.autoComplete())
    [all...]
autofill_agent.cc 537 // If autocomplete is disabled at the field level, ensure that the native
539 // popup. Note that we cannot use the WebKit method element.autoComplete()
540 // as it does not allow us to distinguish the case where autocomplete is
543 element.getAttribute("autocomplete");
562 // If autocomplete is disabled at the form level, we want to see if there
564 // warning. Otherwise, we want to ignore fields that disable autocomplete, so
568 element.autoComplete() ? REQUIRE_AUTOCOMPLETE : REQUIRE_NONE;
573 // If we didn't find the cached form, at least let autocomplete have a shot
  /external/chromium/webkit/glue/
dom_operations.cc 295 return input_element.autoComplete();

Completed in 129 milliseconds