mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-22 07:27:55 +01:00
b2274f534d
Mac: 13.5+ build system w/ 14.0 base SDK (Xcode 15.0) is now required.
44 lines
1.7 KiB
Diff
44 lines
1.7 KiB
Diff
diff --git third_party/blink/public/web/web_element.h third_party/blink/public/web/web_element.h
|
|
index c9a9eb2da897c..7339ae9945fc4 100644
|
|
--- third_party/blink/public/web/web_element.h
|
|
+++ third_party/blink/public/web/web_element.h
|
|
@@ -81,6 +81,9 @@ class BLINK_EXPORT WebElement : public WebNode {
|
|
void SetAttribute(const WebString& name, const WebString& value);
|
|
WebString TextContent() const;
|
|
WebString InnerHTML() const;
|
|
+ WebString AttributeLocalName(unsigned index) const;
|
|
+ WebString AttributeValue(unsigned index) const;
|
|
+ unsigned AttributeCount() const;
|
|
|
|
// Returns all <label> elements associated to this element.
|
|
WebVector<WebLabelElement> Labels() const;
|
|
diff --git third_party/blink/renderer/core/exported/web_element.cc third_party/blink/renderer/core/exported/web_element.cc
|
|
index 496d5181ff522..f98339358e9d4 100644
|
|
--- third_party/blink/renderer/core/exported/web_element.cc
|
|
+++ third_party/blink/renderer/core/exported/web_element.cc
|
|
@@ -106,6 +106,24 @@ void WebElement::SetAttribute(const WebString& attr_name,
|
|
IGNORE_EXCEPTION_FOR_TESTING);
|
|
}
|
|
|
|
+unsigned WebElement::AttributeCount() const {
|
|
+ if (!ConstUnwrap<Element>()->hasAttributes())
|
|
+ return 0;
|
|
+ return ConstUnwrap<Element>()->Attributes().size();
|
|
+}
|
|
+
|
|
+WebString WebElement::AttributeLocalName(unsigned index) const {
|
|
+ if (index >= AttributeCount())
|
|
+ return WebString();
|
|
+ return ConstUnwrap<Element>()->Attributes().at(index).LocalName();
|
|
+}
|
|
+
|
|
+WebString WebElement::AttributeValue(unsigned index) const {
|
|
+ if (index >= AttributeCount())
|
|
+ return WebString();
|
|
+ return ConstUnwrap<Element>()->Attributes().at(index).Value();
|
|
+}
|
|
+
|
|
WebString WebElement::TextContent() const {
|
|
return ConstUnwrap<Element>()->textContent();
|
|
}
|