Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(805)

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXNodeObject.h

Issue 2492083002: Implement aria-placeholder (Closed)
Patch Set: Rebaseline android placeholder test Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
index 4ade91bdd8b8add9219feb7ae8bf2c12b20e3259..327773d2f100929c86291944f348d402dedd79b4 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
@@ -175,7 +175,7 @@ class MODULES_EXPORT AXNodeObject : public AXObject {
AXDescriptionFrom&,
DescriptionSources*,
AXRelatedObjectVector*) const override;
- String placeholder(AXNameFrom, AXDescriptionFrom) const override;
+ String placeholder(AXNameFrom) const override;
bool nameFromLabelElement() const override;
// Location
@@ -234,6 +234,7 @@ class MODULES_EXPORT AXNodeObject : public AXObject {
bool* foundTextAlternative) const;
float stepValueForRange() const;
bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const;
+ String placeholderFromNativeAttribute() const;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698