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

Unified Diff: LayoutTests/fast/forms/suggestion-picker/month-suggestion-picker-step-attribute.html

Issue 83413002: Derive the step base for an input element as (now) specified. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Perform step base derivation via InputType::findStepBase() instead Created 7 years, 1 month 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: LayoutTests/fast/forms/suggestion-picker/month-suggestion-picker-step-attribute.html
diff --git a/LayoutTests/fast/forms/suggestion-picker/month-suggestion-picker-step-attribute.html b/LayoutTests/fast/forms/suggestion-picker/month-suggestion-picker-step-attribute.html
index 92837f76d45aa118d0636f56379258f9cbf1e677..1e625cead36655fd82afde4820494a2a387c29ba 100644
--- a/LayoutTests/fast/forms/suggestion-picker/month-suggestion-picker-step-attribute.html
+++ b/LayoutTests/fast/forms/suggestion-picker/month-suggestion-picker-step-attribute.html
@@ -61,8 +61,8 @@ function test2() {
popupWindow.focus();
shouldBe('entryValues().length', '3');
- shouldBeEqualToString('entryValues()[0]', '2012-02');
- shouldBeEqualToString('entryValues()[1]', '2012-07');
+ shouldBeEqualToString('entryValues()[0]', '2012-01');
+ shouldBeEqualToString('entryValues()[1]', '2012-06');
shouldBeEqualToString('entryValues()[2]', '@openCalendarPicker');
eventSender.keyDown('\x1B'); // Close picker.
@@ -78,7 +78,7 @@ function test3() {
popupWindow.focus();
shouldBe('entryValues().length', '2');
- shouldBeEqualToString('entryValues()[0]', '2012-07');
+ shouldBeEqualToString('entryValues()[0]', '2012-01');
shouldBeEqualToString('entryValues()[1]', '@openCalendarPicker');
finishJSTest();

Powered by Google App Engine
This is Rietveld 408576698