blob: 914a63a1d299305078449d21f8d68b1d176b962c [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