blob: 0383f9fef1736cde35861799c6f366cff95cd54c [file] [log] [blame]
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 ""
Putting some digit strings to a French number input.
PASS document.execCommand("InsertText", false, "1234"); frenchInput.value is "1234"
FAIL document.execCommand("InsertText", false, "1,234"); frenchInput.value should be 1.234. Was .
PASS document.execCommand("InsertText", false, "1.234"); frenchInput.value is "1.234"
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 successfullyParsed is true
TEST COMPLETE