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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/in-page-link-target.html

Issue 2867073003: Name calculation should not include nameFrom:author descendants. (Closed)
Patch Set: Rebase 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/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');

Powered by Google App Engine
This is Rietveld 408576698