diff options
Diffstat (limited to 'Source/WebKit/chromium/public/WebElement.h')
| -rw-r--r-- | Source/WebKit/chromium/public/WebElement.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/WebKit/chromium/public/WebElement.h b/Source/WebKit/chromium/public/WebElement.h index a3a06121d..84c43b251 100644 --- a/Source/WebKit/chromium/public/WebElement.h +++ b/Source/WebKit/chromium/public/WebElement.h @@ -38,7 +38,6 @@ namespace WebCore { class Element; } #endif namespace WebKit { -class WebNamedNodeMap; struct WebRect; // Provides access to some properties of a DOM element node. @@ -57,10 +56,12 @@ struct WebRect; WEBKIT_EXPORT bool hasAttribute(const WebString&) const; WEBKIT_EXPORT WebString getAttribute(const WebString&) const; WEBKIT_EXPORT bool setAttribute(const WebString& name, const WebString& value); - WEBKIT_EXPORT WebNamedNodeMap attributes() const; WEBKIT_EXPORT WebString innerText(); WEBKIT_EXPORT WebDocument document() const; WEBKIT_EXPORT void requestFullScreen(); + WEBKIT_EXPORT WebString attributeLocalName(unsigned index) const; + WEBKIT_EXPORT WebString attributeValue(unsigned index) const; + WEBKIT_EXPORT unsigned attributeCount() const; // Returns the language code specified for this element. This attribute // is inherited, so the returned value is drawn from the closest parent |
