Index: third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/week-multiple-fields-ax-aria-attributes.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/week-multiple-fields-ax-aria-attributes.html b/third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/week-multiple-fields-ax-aria-attributes.html |
index 339c03e91af9f6e485f70af79e1a5bbe7e77c79f..bb829e060daea6ba8b2baea70411ab5cc2d883d7 100644 |
--- a/third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/week-multiple-fields-ax-aria-attributes.html |
+++ b/third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/week-multiple-fields-ax-aria-attributes.html |
@@ -11,7 +11,7 @@ description('This test checks aria-help attribute of fields in multiple fields w |
function focusedFieldValueDescription() |
{ |
var element = accessibilityController.focusedElement; |
- return element.deprecatedHelpText + ', ' + element.valueDescription + ', ' + element.minValue + ', ' + element.maxValue; |
+ return element.description + ', ' + element.valueDescription + ', ' + element.minValue + ', ' + element.maxValue; |
} |
var testInput = document.getElementById('test'); |
@@ -21,16 +21,16 @@ if (!window.accessibilityController || !window.eventSender) |
else { |
debug('Non-empty value'); |
testInput.focus(); |
- shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Week, AXValueDescription: 10, 1, 53'); |
+ shouldBeEqualToString('focusedFieldValueDescription()', 'Week, AXValueDescription: 10, 1, 53'); |
eventSender.keyDown('\t'); |
- shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Year, AXValueDescription: 2012, 1, 275760'); |
+ shouldBeEqualToString('focusedFieldValueDescription()', 'Year, AXValueDescription: 2012, 1, 275760'); |
debug('Empty value'); |
eventSender.keyDown('\b'); |
- shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Year, AXValueDescription: blank, 1, 275760'); |
+ shouldBeEqualToString('focusedFieldValueDescription()', 'Year, AXValueDescription: blank, 1, 275760'); |
eventSender.keyDown('\t', ['shiftKey']); |
eventSender.keyDown('\b'); |
- shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Week, AXValueDescription: blank, 1, 53'); |
+ shouldBeEqualToString('focusedFieldValueDescription()', 'Week, AXValueDescription: blank, 1, 53'); |
debug(''); |
testInput.remove(); |