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

Unified Diff: LayoutTests/fast/forms/number/number-l10n-input-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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/forms/number/number-l10n-input-expected.txt
diff --git a/LayoutTests/fast/forms/number/number-l10n-input-expected.txt b/LayoutTests/fast/forms/number/number-l10n-input-expected.txt
index d55806226200400c785adc4363bee77c36962903..fcce18df5d4b464e17c24a944f0ba426ef88d945 100644
--- a/LayoutTests/fast/forms/number/number-l10n-input-expected.txt
+++ b/LayoutTests/fast/forms/number/number-l10n-input-expected.txt
@@ -1,7 +1,7 @@
Putting some ASCII digit strings to a number input using localized digits.
PASS document.execCommand("InsertText", false, "1234"); arabicInput.value is "1234"
PASS document.execCommand("InsertText", false, "1.234"); arabicInput.value is "1.234"
-PASS document.execCommand("InsertText", false, "1,234"); arabicInput.value is ""
+PASS document.execCommand("InsertText", false, "1,234"); arabicInput.value is "1234"
Putting some digit strings to a French number input.
PASS document.execCommand("InsertText", false, "1234"); frenchInput.value is "1234"
@@ -11,7 +11,7 @@ PASS document.execCommand("InsertText", false, "1.234"); frenchInput.value is "1
Puttting some digit strings to an English number input.
PASS document.execCommand("InsertText", false, "1234"); englishInput.value is "1234"
PASS document.execCommand("InsertText", false, "1.234"); englishInput.value is "1.234"
-PASS document.execCommand("InsertText", false, "1,234"); englishInput.value is ""
+PASS document.execCommand("InsertText", false, "1,234"); englishInput.value is "1234"
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698