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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/onclick-handlers.html

Issue 2713193003: Added a quick heuristic to determine which objects are the target of in-page links and stop ignorin… (Closed)
Patch Set: Fixed Android test. Created 3 years, 9 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/onclick-handlers.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/onclick-handlers.html b/third_party/WebKit/LayoutTests/accessibility/onclick-handlers.html
index 67f29a7449e7c11f3be7c5104af282f914589333..7c12ae43ca5db29e0715663072cce0830de9bacc 100644
--- a/third_party/WebKit/LayoutTests/accessibility/onclick-handlers.html
+++ b/third_party/WebKit/LayoutTests/accessibility/onclick-handlers.html
@@ -17,7 +17,7 @@
var body = document.getElementById("body");
body.focus();
var focusedElement = accessibilityController.focusedElement;
- var textElement = focusedElement.childAtIndex(0).childAtIndex(0);
+ var textElement = focusedElement.childAtIndex(1).childAtIndex(0);
if (textElement.isPressActionSupported()) {
result.innerText += "Test passed\n";

Powered by Google App Engine
This is Rietveld 408576698