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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/scroll-div-sends-notification.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/scroll-div-sends-notification.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/scroll-div-sends-notification.html b/third_party/WebKit/LayoutTests/accessibility/scroll-div-sends-notification.html
index b4d629489b94c2f424a63d0b8852f20805ea10ff..37dee5a30651a886474c0bc780c300845e5584c8 100644
--- a/third_party/WebKit/LayoutTests/accessibility/scroll-div-sends-notification.html
+++ b/third_party/WebKit/LayoutTests/accessibility/scroll-div-sends-notification.html
@@ -37,7 +37,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.scrollTop", "500");
accessibilityController.removeNotificationListener();

Powered by Google App Engine
This is Rietveld 408576698