Index: webkit/glue/webaccessibility.h |
=================================================================== |
--- webkit/glue/webaccessibility.h (revision 57849) |
+++ webkit/glue/webaccessibility.h (working copy) |
@@ -147,9 +147,20 @@ |
STATE_UNAVAILABLE |
}; |
+ // Additional optional attributes that can be optionally attached to |
+ // a node. |
enum Attribute { |
+ // Doc attributes: only make sense when applied to the top-level |
+ // Document node. |
+ ATTR_DOC_URL, |
+ ATTR_DOC_TITLE, |
+ ATTR_DOC_MIMETYPE, |
+ ATTR_DOC_DOCTYPE, |
+ |
+ // Attributes that could apply to any node. |
ATTR_ACTION, |
ATTR_DESCRIPTION, |
+ ATTR_DISPLAY, |
ATTR_HELP, |
ATTR_HTML_TAG, |
ATTR_LINK_TARGET, |
@@ -182,6 +193,7 @@ |
WebKit::WebRect location; |
std::map<int32, string16> attributes; |
std::vector<WebAccessibility> children; |
+ std::vector<std::pair<string16, string16> > html_attributes; |
}; |
} // namespace webkit_glue |