mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 824148 - [KEYBOARD] Input type=range should bring up the number keyboard. r=ttaubert
This commit is contained in:
parent
8db38c00a3
commit
b737d582ea
@ -455,7 +455,7 @@ function getJSON(element) {
|
||||
value = element.textContent;
|
||||
}
|
||||
|
||||
// Until the input type=date/datetime/time have been implemented
|
||||
// Until the input type=date/datetime/range have been implemented
|
||||
// let's return their real type even if the platform returns 'text'
|
||||
let attributeType = element.getAttribute("type") || "";
|
||||
|
||||
@ -464,6 +464,7 @@ function getJSON(element) {
|
||||
switch (typeLowerCase) {
|
||||
case "datetime":
|
||||
case "datetime-local":
|
||||
case "range":
|
||||
type = typeLowerCase;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user