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

Unified Diff: third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp

Issue 2088453002: Implement the inert attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update generic test expectations Created 3 years, 7 months 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/InspectorTypeBuilderHelper.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp b/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
index 4eb03f24c9f4611ba5b1f0347a025f1502a086c5..57293b0d184485deefdb2361399eb57e3b1c57cc 100644
--- a/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
@@ -26,16 +26,18 @@ String IgnoredReasonName(AXIgnoredReason reason) {
return "ancestorDisallowsChild";
case kAXAncestorIsLeafNode:
return "ancestorIsLeafNode";
- case kAXAriaHidden:
- return "ariaHidden";
- case kAXAriaHiddenRoot:
- return "ariaHiddenRoot";
+ case kAXAriaHiddenElement:
+ return "ariaHiddenElement";
+ case kAXAriaHiddenSubtree:
+ return "ariaHiddenSubtree";
case kAXEmptyAlt:
return "emptyAlt";
case kAXEmptyText:
return "emptyText";
- case kAXInert:
- return "inert";
+ case kAXInertElement:
+ return "inertElement";
+ case kAXInertSubtree:
+ return "inertSubtree";
case kAXInheritsPresentation:
return "inheritsPresentation";
case kAXLabelContainer:

Powered by Google App Engine
This is Rietveld 408576698