| Index: third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-ax-aria-attributes.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-ax-aria-attributes.html b/third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-ax-aria-attributes.html
|
| index 629842a739242b2f23949aa822e4e891a88c929b..fc53951d5fe80af6386872db74ebfb64385a70e2 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-ax-aria-attributes.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-ax-aria-attributes.html
|
| @@ -31,31 +31,31 @@ testInput.focus();
|
|
|
| debug('Non-empty value');
|
| testInput.focus();
|
| -checkFocusedElementAXAttributes('AXHelp: Hours, AXValueDescription: 12, intValue:12, range:1-12');
|
| +checkFocusedElementAXAttributes('Hours, AXValueDescription: 12, intValue:12, range:1-12');
|
| keyDown('\t');
|
| -checkFocusedElementAXAttributes('AXHelp: Minutes, AXValueDescription: 34, intValue:34, range:0-59');
|
| +checkFocusedElementAXAttributes('Minutes, AXValueDescription: 34, intValue:34, range:0-59');
|
| keyDown('\t');
|
| -checkFocusedElementAXAttributes('AXHelp: Seconds, AXValueDescription: 56, intValue:56, range:0-59');
|
| +checkFocusedElementAXAttributes('Seconds, AXValueDescription: 56, intValue:56, range:0-59');
|
| keyDown('\t');
|
| -checkFocusedElementAXAttributes('AXHelp: Milliseconds, AXValueDescription: 789, intValue:789, range:0-999');
|
| +checkFocusedElementAXAttributes('Milliseconds, AXValueDescription: 789, intValue:789, range:0-999');
|
| keyDown('\t');
|
| -checkFocusedElementAXAttributes('AXHelp: AM/PM, AXValueDescription: PM, intValue:2, range:1-2');
|
| +checkFocusedElementAXAttributes('AM/PM, AXValueDescription: PM, intValue:2, range:1-2');
|
|
|
| debug('Empty value');
|
| keyDown('\b');
|
| -checkFocusedElementAXAttributes('AXHelp: AM/PM, AXValueDescription: blank, intValue:0, range:1-2');
|
| +checkFocusedElementAXAttributes('AM/PM, AXValueDescription: blank, intValue:0, range:1-2');
|
| keyDown('\t', ['shiftKey']);
|
| keyDown('\b');
|
| -checkFocusedElementAXAttributes('AXHelp: Milliseconds, AXValueDescription: blank, intValue:0, range:0-999');
|
| +checkFocusedElementAXAttributes('Milliseconds, AXValueDescription: blank, intValue:0, range:0-999');
|
| keyDown('\t', ['shiftKey']);
|
| keyDown('\b');
|
| -checkFocusedElementAXAttributes('AXHelp: Seconds, AXValueDescription: blank, intValue:0, range:0-59');
|
| +checkFocusedElementAXAttributes('Seconds, AXValueDescription: blank, intValue:0, range:0-59');
|
| keyDown('\t', ['shiftKey']);
|
| keyDown('\b');
|
| -checkFocusedElementAXAttributes('AXHelp: Minutes, AXValueDescription: blank, intValue:0, range:0-59');
|
| +checkFocusedElementAXAttributes('Minutes, AXValueDescription: blank, intValue:0, range:0-59');
|
| keyDown('\t', ['shiftKey']);
|
| keyDown('\b');
|
| -checkFocusedElementAXAttributes('AXHelp: Hours, AXValueDescription: blank, intValue:0, range:1-12');
|
| +checkFocusedElementAXAttributes('Hours, AXValueDescription: blank, intValue:0, range:1-12');
|
|
|
| debug('');
|
| testInput.parentNode.removeChild(testInput);
|
|
|