summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/qwebengineview/resources/input_modes.html
blob: 857bea8b11eec1f88e28d916cf9804610d8f1cc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head><style>
input {
    position: relative;
    left: 10px;
    width: 100px;
    height: 50px;
    margin: 10px 0;
    font-size: 16px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
}
</style></head>

<body>
<input inputmode="none" id="noneMode">

<input inputmode="text" id="textMode">
<input inputmode="tel" id="telMode">
<input inputmode="url" id="urlMode">
<input inputmode="email" id="emailMode">
<input inputmode="numeric" id="numericMode">
<input inputmode="decimal" id="decimalMode">
<input inputmode="search" id="searchMode">

<input type="text" inputmode="numeric" id="override">
</body>

</html>