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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-ax-aria-attributes.html

Issue 2306383005: Made date input field read "mm", "dd", "yyyy", or equivalents in other languages, instead of "blank… (Closed)
Patch Set: Fixed test expectations. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
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 83d4a8322df47fe0aad5e23dcf96aa4f4fcfc02c..73d5802541d512985702750a8bfcaec69a373338 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
@@ -43,19 +43,19 @@ checkFocusedElementAXAttributes('AM/PM, AXValueDescription: PM, intValue:2, rang
debug('Empty value');
keyDown('Backspace');
-checkFocusedElementAXAttributes('AM/PM, AXValueDescription: blank, intValue:0, range:1-2');
+checkFocusedElementAXAttributes('AM/PM, AXValueDescription: --, intValue:0, range:1-2');
keyDown('\t', ['shiftKey']);
keyDown('Backspace');
-checkFocusedElementAXAttributes('Milliseconds, AXValueDescription: blank, intValue:0, range:0-999');
+checkFocusedElementAXAttributes('Milliseconds, AXValueDescription: ---, intValue:0, range:0-999');
keyDown('\t', ['shiftKey']);
keyDown('Backspace');
-checkFocusedElementAXAttributes('Seconds, AXValueDescription: blank, intValue:0, range:0-59');
+checkFocusedElementAXAttributes('Seconds, AXValueDescription: --, intValue:0, range:0-59');
keyDown('\t', ['shiftKey']);
keyDown('Backspace');
-checkFocusedElementAXAttributes('Minutes, AXValueDescription: blank, intValue:0, range:0-59');
+checkFocusedElementAXAttributes('Minutes, AXValueDescription: --, intValue:0, range:0-59');
keyDown('\t', ['shiftKey']);
keyDown('Backspace');
-checkFocusedElementAXAttributes('Hours, AXValueDescription: blank, intValue:0, range:1-12');
+checkFocusedElementAXAttributes('Hours, AXValueDescription: --, intValue:0, range:1-12');
debug('');
testInput.parentNode.removeChild(testInput);

Powered by Google App Engine
This is Rietveld 408576698