Index: third_party/WebKit/LayoutTests/accessibility/in-page-link-target.html |
diff --git a/third_party/WebKit/LayoutTests/accessibility/in-page-link-target.html b/third_party/WebKit/LayoutTests/accessibility/in-page-link-target.html |
index 9270c0462f9a8c0dbbd5dfd3fa67774df76f0c75..355eaca7fafd3a4c6cd097fcef9cd9139dab6e22 100644 |
--- a/third_party/WebKit/LayoutTests/accessibility/in-page-link-target.html |
+++ b/third_party/WebKit/LayoutTests/accessibility/in-page-link-target.html |
@@ -57,7 +57,7 @@ test(function() { |
assert_not_equals(anchor, undefined); |
var target = anchor.inPageLinkTarget; |
assert_not_equals(target, undefined); |
- assert_equals(target.role, 'AXRole: AXGroup'); |
+ assert_equals(target.role, 'AXRole: AXGenericContainer'); |
assert_equals(target.name, ''); |
}, 'Test finding the target when it is an empty span.'); |
@@ -66,7 +66,7 @@ test(function() { |
assert_not_equals(anchor, undefined); |
var target = anchor.inPageLinkTarget; |
assert_not_equals(target, undefined); |
- assert_equals(target.role, 'AXRole: AXGroup'); |
+ assert_equals(target.role, 'AXRole: AXGenericContainer'); |
var child = target.childAtIndex(0); |
assert_not_equals(child, undefined); |
assert_equals(child.role, 'AXRole: AXStaticText'); |