| Index: third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-ax-aria-attributes.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-ax-aria-attributes.html b/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-ax-aria-attributes.html
|
| index 0ac92ca04d9a64237b064002ac658453734e602f..b94730103aabab6d0a370b1b952b0a6a74bf8b60 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-ax-aria-attributes.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-ax-aria-attributes.html
|
| @@ -16,16 +16,16 @@ if (!window.accessibilityController || !window.eventSender)
|
| else {
|
| debug('Non-empty value');
|
| testInput.focus();
|
| - checkFocusedElementAXAttributes('AXHelp: Month, AXValueDescription: October, intValue:10, range:1-12');
|
| + checkFocusedElementAXAttributes('Month, AXValueDescription: October, intValue:10, range:1-12');
|
| eventSender.keyDown('\t');
|
| - checkFocusedElementAXAttributes('AXHelp: Year, AXValueDescription: 2012, intValue:2012, range:1-275760');
|
| + checkFocusedElementAXAttributes('Year, AXValueDescription: 2012, intValue:2012, range:1-275760');
|
|
|
| debug('Empty value');
|
| eventSender.keyDown('\b');
|
| - checkFocusedElementAXAttributes('AXHelp: Year, AXValueDescription: blank, intValue:0, range:1-275760');
|
| + checkFocusedElementAXAttributes('Year, AXValueDescription: blank, intValue:0, range:1-275760');
|
| eventSender.keyDown('\t', ['shiftKey']);
|
| eventSender.keyDown('\b');
|
| - checkFocusedElementAXAttributes('AXHelp: Month, AXValueDescription: blank, intValue:0, range:1-12');
|
| + checkFocusedElementAXAttributes('Month, AXValueDescription: blank, intValue:0, range:1-12');
|
|
|
| debug('');
|
| testInput.remove();
|
|
|