Index: third_party/WebKit/LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-aria-attributes.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-aria-attributes.html b/third_party/WebKit/LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-aria-attributes.html |
index 22efaebb46298752da8c2f3cceb3d0ba3fd0bd17..4fd07a5efeeb6a63d20caf5705c0046d8dd6f494 100644 |
--- a/third_party/WebKit/LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-aria-attributes.html |
+++ b/third_party/WebKit/LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-aria-attributes.html |
@@ -16,31 +16,31 @@ if (!window.accessibilityController || !window.eventSender) |
else { |
testInput.focus(); |
debug('Initial empty state'); |
- checkFocusedElementAXAttributes('AXHelp: Month, AXValueDescription: blank, intValue:0, range:1-12'); |
+ checkFocusedElementAXAttributes('Month, AXValueDescription: blank, intValue:0, range:1-12'); |
eventSender.keyDown('\t'); |
- checkFocusedElementAXAttributes('AXHelp: Day, AXValueDescription: blank, intValue:0, range:1-31'); |
+ checkFocusedElementAXAttributes('Day, AXValueDescription: blank, intValue:0, range:1-31'); |
eventSender.keyDown('\t'); |
- 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('\t', ['shiftKey']); |
debug('Non-empty value'); |
testInput.value = "2012-10-09"; |
- checkFocusedElementAXAttributes('AXHelp: Month, AXValueDescription: 10, intValue:10, range:1-12'); |
+ checkFocusedElementAXAttributes('Month, AXValueDescription: 10, intValue:10, range:1-12'); |
eventSender.keyDown('\t'); |
- checkFocusedElementAXAttributes('AXHelp: Day, AXValueDescription: 09, intValue:9, range:1-31'); |
+ checkFocusedElementAXAttributes('Day, AXValueDescription: 09, intValue:9, range:1-31'); |
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: Day, AXValueDescription: blank, intValue:0, range:1-31'); |
+ checkFocusedElementAXAttributes('Day, AXValueDescription: blank, intValue:0, range:1-31'); |
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.parentNode.removeChild(testInput); |