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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/scroll-div-horiz-sends-notification.html

Issue 2867073003: Name calculation should not include nameFrom:author descendants. (Closed)
Patch Set: Single quote 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/scroll-div-horiz-sends-notification.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/scroll-div-horiz-sends-notification.html b/third_party/WebKit/LayoutTests/accessibility/scroll-div-horiz-sends-notification.html
index a5f280edfa6ec3902ca0d46919baa6850c03932b..a8addedae6c3152c89a6df319068f09ec8056b13 100644
--- a/third_party/WebKit/LayoutTests/accessibility/scroll-div-horiz-sends-notification.html
+++ b/third_party/WebKit/LayoutTests/accessibility/scroll-div-horiz-sends-notification.html
@@ -42,7 +42,7 @@ if (window.testRunner && window.accessibilityController) {
var container = document.getElementById('container');
accessibilityController.addNotificationListener(function (target, notification) {
- if (target.role == 'AXRole: AXDiv') {
+ if (target.role == 'AXRole: AXGenericContainer') {
debug('Got notification on container div');
shouldBe("container.scrollLeft", "500");
accessibilityController.removeNotificationListener();

Powered by Google App Engine
This is Rietveld 408576698