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

Side by Side Diff: LayoutTests/fast/forms/number/number-reject-invalid-expected.txt

Issue 1100273002: input[type=number] UI should reject invalid characters. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 Arabic number input should accept ASCII digits and Arabic digits, and reject oth ers.
2 PASS displayValueForKeyInput(arabicInput, "123.4") is "123.4"
3 PASS displayValueForKeyInput(arabicInput, "1.23E+19") is "1.23E+19"
4 PASS displayValueForKeyInput(arabicInput, "1.23e-1") is "1.23e-1"
5 PASS displayValueForKeyInput(arabicInput, "١٩٠") is "١٩٠"
6 PASS displayValueForKeyInput(arabicInput, "acdef") is "e"
7
8 French number input should accept ASCII digits, comma, and full stop.
9 PASS displayValueForKeyInput(frenchInput, "1234.56") is "1234.56"
10 FAIL displayValueForKeyInput(frenchInput, "1234,56") should be 1234.56. Was 1234 ,56.
11
12 English number input should accept ASCII digits and full stop, and no comma.
13 PASS displayValueForKeyInput(englishInput, "1234.56") is "1234.56"
14 PASS displayValueForKeyInput(englishInput, "-1234,56") is "-123456"
15 PASS displayValueForKeyInput(englishInput, " abcdef ") is "e"
16 PASS successfullyParsed is true
17
18 TEST COMPLETE
19
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/number/number-reject-invalid.html ('k') | LayoutTests/fast/forms/number/number-validity-badinput.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698