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

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

Issue 12086056: Merge 140803 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 10 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 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.helpText + ', ' + element.valueDescription + ', intValue:' + element.intValue + ', range:'+ element.minValue + '-' + element.maxValue; 4 return element.helpText + ', ' + 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