diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 01:56:22 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 01:56:22 +0000 |
commit | 8cc47ce3146b70a4bef2665eebeb5875050d3534 (patch) | |
tree | 42c9679eee636657405a175395d1367bff59dff9 /webkit/glue/dom_operations.h | |
parent | 11c2fe82bca2cd871eeb7aff77043754ef75651a (diff) | |
download | chromium_src-8cc47ce3146b70a4bef2665eebeb5875050d3534.zip chromium_src-8cc47ce3146b70a4bef2665eebeb5875050d3534.tar.gz chromium_src-8cc47ce3146b70a4bef2665eebeb5875050d3534.tar.bz2 |
Adding the elementDoesAutoCompleteForElementWithId method to the layoutTestController class to fix the security/set-form-autocomplete-attribute.html layout test.
Review URL: http://codereview.chromium.org/17364
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7915 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/dom_operations.h')
-rw-r--r-- | webkit/glue/dom_operations.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/webkit/glue/dom_operations.h b/webkit/glue/dom_operations.h index d1512c1..9c88e86 100644 --- a/webkit/glue/dom_operations.h +++ b/webkit/glue/dom_operations.h @@ -187,6 +187,12 @@ bool PauseTransitionAtTimeOnElementWithId(WebView* view, double time, const std::string& element_id); +// Returns true if the element with |element_id| as its id has autocomplete +// on. +bool ElementDoesAutoCompleteForElementWithId(WebView* view, + const std::string& element_id); + + } // namespace webkit_glue #endif // WEBKIT_GLUE_DOM_OPERATIONS_H__ |