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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/resources/multiple-fields-ax-aria-attributes.js

Issue 1417213006: Switch all LayoutTests to use new AX name calculation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix canvas-fallback-content-labels-expected.txt Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 function focusedElementDescription() 1 function focusedElementDescription()
2 { 2 {
3 var element = accessibilityController.focusedElement; 3 var element = accessibilityController.focusedElement;
4 return element.deprecatedHelpText + ', ' + element.valueDescription + ', in tValue:' + element.intValue + ', range:'+ element.minValue + '-' + element.maxVa lue; 4 return element.description + ', ' + element.valueDescription + ', intValue: ' + element.intValue + ', range:'+ element.minValue + '-' + element.maxValue;
5 } 5 }
6 6
7 function checkFocusedElementAXAttributes(expected) { 7 function checkFocusedElementAXAttributes(expected) {
8 shouldBeEqualToString('focusedElementDescription()', expected); 8 shouldBeEqualToString('focusedElementDescription()', expected);
9 } 9 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698