Home
last modified time | relevance | path

Searched refs:isAutofilled (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebFormControlElement.cpp67 bool WebFormControlElement::isAutofilled() const in isAutofilled() function in blink::WebFormControlElement
69 return constUnwrap<HTMLFormControlElement>()->isAutofilled(); in isAutofilled()
/external/chromium_org/chrome/renderer/autofill/
Dform_autofill_browsertest.cc252 EXPECT_EQ(field_case.should_be_autofilled, element.isAutofilled()); in ValidteFilledField()
2673 EXPECT_FALSE(firstname.isAutofilled()); in TEST_F()
2775 EXPECT_FALSE(firstname.isAutofilled()); in TEST_F()
2861 EXPECT_TRUE(firstname.isAutofilled()); in TEST_F()
2866 EXPECT_FALSE(lastname.isAutofilled()); in TEST_F()
2869 EXPECT_FALSE(email.isAutofilled()); in TEST_F()
2872 EXPECT_FALSE(email2.isAutofilled()); in TEST_F()
2875 EXPECT_FALSE(phone.isAutofilled()); in TEST_F()
2931 EXPECT_FALSE(firstname.isAutofilled()); in TEST_F()
2938 EXPECT_FALSE(lastname.isAutofilled()); in TEST_F()
[all …]
Dpassword_generation_agent_browsertest.cc224 EXPECT_TRUE(first_password_element.isAutofilled()); in TEST_F()
225 EXPECT_TRUE(second_password_element.isAutofilled()); in TEST_F()
Dpassword_autofill_agent_browsertest.cc261 EXPECT_EQ(username_autofilled, username_element.isAutofilled()); in CheckTextFieldsStateForElements()
264 EXPECT_EQ(password_autofilled, password_element.isAutofilled()); in CheckTextFieldsStateForElements()
/external/chromium_org/third_party/WebKit/public/web/
DWebFormControlElement.h64 BLINK_EXPORT bool isAutofilled() const;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DSharedStyleFinder.cpp65 if (candidateInput.isAutofilled() != thisInput.isAutofilled()) in canShareStyleWithControl()
/external/chromium/webkit/glue/
Dform_field.cc48 is_autofilled = input_element.isAutofilled(); in FormField()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLFormControlElement.h106 bool isAutofilled() const { return m_isAutofilled; } in isAutofilled() function
/external/chromium_org/components/autofill/content/renderer/
Dform_autofill_util.cc774 field->is_autofilled = input_element->isAutofilled(); in WebFormControlElementToFormField()
1059 if (!input_element->isAutofilled()) in ClearPreviewedFormWithElement()
1103 if (input_element->isAutofilled()) in FormWithElementIsAutofilled()
Dpassword_autofill_agent.cc169 if (element->isAutofilled() == autofilled) in SetElementAutofilled()
239 if (password.isAutofilled()) { in TextDidChangeInTextField()
Dautofill_agent.cc430 was_query_node_autofilled_ = element_.isAutofilled(); in OnFormDataFilled()
/external/chromium_org/third_party/WebKit/Source/core/css/
DSelectorChecker.cpp689 return toHTMLFormControlElement(element).isAutofilled(); in checkOne()