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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2001 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
* (C) 2006 Alexey Proskuryakov (ap@nypop.com)
* Copyright (C) 2007 Samuel Weinig (sam@webkit.org)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#include "config.h"
#include "HTMLInputElement.h"
#include "AXObjectCache.h"
#include "CSSPropertyNames.h"
#include "ChromeClient.h"
#include "DateComponents.h"
#include "Document.h"
#include "Editor.h"
#include "Event.h"
#include "EventHandler.h"
#include "EventNames.h"
#include "ExceptionCode.h"
#include "File.h"
#include "FileList.h"
#include "FocusController.h"
#include "FormDataList.h"
#include "Frame.h"
#include "HTMLDataListElement.h"
#include "HTMLFormElement.h"
#include "HTMLImageLoader.h"
#include "HTMLNames.h"
#include "HTMLOptionElement.h"
#include "ScriptEventListener.h"
#include "KeyboardEvent.h"
#include "LocalizedStrings.h"
#include "MappedAttribute.h"
#include "MouseEvent.h"
#include "Page.h"
#include "RegularExpression.h"
#include "RenderButton.h"
#include "RenderFileUploadControl.h"
#include "RenderImage.h"
#include "RenderSlider.h"
#include "RenderText.h"
#include "RenderTextControlSingleLine.h"
#include "RenderTheme.h"
#include "StringHash.h"
#include "TextEvent.h"
#include <wtf/HashMap.h>
#include <wtf/MathExtras.h>
#include <wtf/StdLibExtras.h>
#include <wtf/dtoa.h>
using namespace std;
namespace WebCore {
using namespace HTMLNames;
const int maxSavedResults = 256;
// Constant values for getAllowedValueStep().
static const double dateDefaultStep = 1.0;
static const double dateStepScaleFactor = 86400000.0;
static const double dateTimeDefaultStep = 60.0;
static const double dateTimeStepScaleFactor = 1000.0;
static const double monthDefaultStep = 1.0;
static const double monthStepScaleFactor = 1.0;
static const double numberDefaultStep = 1.0;
static const double numberStepScaleFactor = 1.0;
static const double timeDefaultStep = 60.0;
static const double timeStepScaleFactor = 1000.0;
static const double weekDefaultStep = 1.0;
static const double weekStepScaleFactor = 604800000.0;
// Constant values for minimum().
static const double dateDefaultMinimum = -12219292800000.0; // This means 1582-10-15T00:00Z.
static const double dateTimeDefaultMinimum = -12219292800000.0; // ditto.
static const double monthDefaultMinimum = (1582.0 - 1970) * 12 + 10 - 1; // 1582-10
static const double numberDefaultMinimum = -DBL_MAX;
static const double rangeDefaultMinimum = 0.0;
static const double timeDefaultMinimum = 0.0; // 00:00:00.000
static const double weekDefaultMinimum = -12212380800000.0; // 1583-01-03, the first Monday of 1583.
// Constant values for maximum().
static const double dateDefaultMaximum = DBL_MAX;
static const double dateTimeDefaultMaximum = DBL_MAX;
// DateComponents::m_year can't represent a year greater than INT_MAX.
static const double monthDefaultMaximum = (INT_MAX - 1970) * 12.0 + 12 - 1;
static const double numberDefaultMaximum = DBL_MAX;
static const double rangeDefaultMaximum = 100.0;
static const double timeDefaultMaximum = 86399999.0; // 23:59:59.999
static const double weekDefaultMaximum = DBL_MAX;
static const double defaultStepBase = 0.0;
static const double weekDefaultStepBase = -259200000.0; // The first day of 1970-W01.
static const double msecPerMinute = 60 * 1000;
static const double msecPerSecond = 1000;
HTMLInputElement::HTMLInputElement(const QualifiedName& tagName, Document* doc, HTMLFormElement* f)
: HTMLTextFormControlElement(tagName, doc, f)
, m_xPos(0)
, m_yPos(0)
, m_maxResults(-1)
, m_type(TEXT)
, m_checked(false)
, m_defaultChecked(false)
, m_useDefaultChecked(true)
, m_indeterminate(false)
, m_haveType(false)
, m_activeSubmit(false)
, m_autocomplete(Uninitialized)
, m_autofilled(false)
, m_inited(false)
{
ASSERT(hasTagName(inputTag) || hasTagName(isindexTag));
}
HTMLInputElement::~HTMLInputElement()
{
if (needsActivationCallback())
document()->unregisterForDocumentActivationCallbacks(this);
document()->checkedRadioButtons().removeButton(this);
// Need to remove this from the form while it is still an HTMLInputElement,
// so can't wait for the base class's destructor to do it.
removeFromForm();
}
const AtomicString& HTMLInputElement::formControlName() const
{
return m_data.name();
}
bool HTMLInputElement::autoComplete() const
{
if (m_autocomplete != Uninitialized)
return m_autocomplete == On;
// Assuming we're still in a Form, respect the Form's setting
if (HTMLFormElement* form = this->form())
return form->autoComplete();
// The default is true
return true;
}
static inline CheckedRadioButtons& checkedRadioButtons(const HTMLInputElement* element)
{
if (HTMLFormElement* form = element->form())
return form->checkedRadioButtons();
return element->document()->checkedRadioButtons();
}
bool HTMLInputElement::valueMissing() const
{
if (!isRequiredFormControl() || readOnly() || disabled())
return false;
switch (inputType()) {
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case FILE:
case MONTH:
case NUMBER:
case PASSWORD:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
return value().isEmpty();
case CHECKBOX:
return !checked();
case RADIO:
return !checkedRadioButtons(this).checkedButtonForGroup(name());
case COLOR:
return false;
case BUTTON:
case HIDDEN:
case IMAGE:
case ISINDEX:
case RANGE:
case RESET:
case SUBMIT:
break;
}
ASSERT_NOT_REACHED();
return false;
}
bool HTMLInputElement::patternMismatch() const
{
switch (inputType()) {
case BUTTON:
case CHECKBOX:
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case MONTH:
case NUMBER:
case RADIO:
case RANGE:
case RESET:
case SUBMIT:
case TIME:
case WEEK:
return false;
case EMAIL:
case PASSWORD:
case SEARCH:
case TELEPHONE:
case TEXT:
case URL:
const AtomicString& pattern = getAttribute(patternAttr);
String value = this->value();
// Empty values can't be mismatched
if (pattern.isEmpty() || value.isEmpty())
return false;
RegularExpression patternRegExp(pattern, TextCaseSensitive);
int matchLength = 0;
int valueLength = value.length();
int matchOffset = patternRegExp.match(value, 0, &matchLength);
return matchOffset != 0 || matchLength != valueLength;
}
ASSERT_NOT_REACHED();
return false;
}
bool HTMLInputElement::tooLong() const
{
switch (inputType()) {
case EMAIL:
case PASSWORD:
case SEARCH:
case TELEPHONE:
case TEXT:
case URL: {
int max = maxLength();
if (max < 0)
return false;
// Return false for the default value even if it is longer than maxLength.
bool userEdited = !m_data.value().isNull();
if (!userEdited)
return false;
return value().numGraphemeClusters() > static_cast<unsigned>(max);
}
case BUTTON:
case CHECKBOX:
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case MONTH:
case NUMBER:
case RADIO:
case RANGE:
case RESET:
case SUBMIT:
case TIME:
case WEEK:
return false;
}
ASSERT_NOT_REACHED();
return false;
}
bool HTMLInputElement::rangeUnderflow() const
{
const double nan = numeric_limits<double>::quiet_NaN();
switch (inputType()) {
case DATE:
case DATETIME:
case DATETIMELOCAL:
case MONTH:
case NUMBER:
case RANGE:
case TIME:
case WEEK: {
double doubleValue = parseToDouble(value(), nan);
return isfinite(doubleValue) && doubleValue < minimum();
}
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
break;
}
return false;
}
bool HTMLInputElement::rangeOverflow() const
{
const double nan = numeric_limits<double>::quiet_NaN();
switch (inputType()) {
case DATE:
case DATETIME:
case DATETIMELOCAL:
case MONTH:
case NUMBER:
case RANGE:
case TIME:
case WEEK: {
double doubleValue = parseToDouble(value(), nan);
return isfinite(doubleValue) && doubleValue > maximum();
}
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
break;
}
return false;
}
double HTMLInputElement::minimum() const
{
switch (inputType()) {
case DATE:
return parseToDouble(getAttribute(minAttr), dateDefaultMinimum);
case DATETIME:
case DATETIMELOCAL:
return parseToDouble(getAttribute(minAttr), dateTimeDefaultMinimum);
case MONTH:
return parseToDouble(getAttribute(minAttr), monthDefaultMinimum);
case NUMBER:
return parseToDouble(getAttribute(minAttr), numberDefaultMinimum);
case RANGE:
return parseToDouble(getAttribute(minAttr), rangeDefaultMinimum);
case TIME:
return parseToDouble(getAttribute(minAttr), timeDefaultMinimum);
case WEEK:
return parseToDouble(getAttribute(minAttr), weekDefaultMinimum);
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
break;
}
ASSERT_NOT_REACHED();
return 0;
}
double HTMLInputElement::maximum() const
{
switch (inputType()) {
case DATE:
return parseToDouble(getAttribute(maxAttr), dateDefaultMaximum);
case DATETIME:
case DATETIMELOCAL:
return parseToDouble(getAttribute(maxAttr), dateTimeDefaultMaximum);
case MONTH:
return parseToDouble(getAttribute(maxAttr), monthDefaultMaximum);
case NUMBER:
return parseToDouble(getAttribute(maxAttr), numberDefaultMaximum);
case RANGE: {
double max = parseToDouble(getAttribute(maxAttr), rangeDefaultMaximum);
// A remedy for the inconsistent min/max values for RANGE.
// Sets the maximum to the default or the minimum value.
double min = minimum();
if (max < min)
max = std::max(min, rangeDefaultMaximum);
return max;
}
case TIME:
return parseToDouble(getAttribute(maxAttr), timeDefaultMaximum);
case WEEK:
return parseToDouble(getAttribute(maxAttr), weekDefaultMaximum);
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
break;
}
ASSERT_NOT_REACHED();
return 0;
}
double HTMLInputElement::stepBase() const
{
switch (inputType()) {
case RANGE:
return minimum();
case DATE:
case DATETIME:
case DATETIMELOCAL:
case MONTH:
case NUMBER:
case TIME:
return parseToDouble(getAttribute(minAttr), defaultStepBase);
case WEEK:
return parseToDouble(getAttribute(minAttr), weekDefaultStepBase);
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
break;
}
ASSERT_NOT_REACHED();
return 0.0;
}
bool HTMLInputElement::stepMismatch() const
{
double step;
if (!getAllowedValueStep(&step))
return false;
switch (inputType()) {
case RANGE:
// stepMismatch doesn't occur for RANGE. RenderSlider guarantees the
// value matches to step.
return false;
case NUMBER: {
double doubleValue;
if (!parseToDoubleForNumberType(value(), &doubleValue))
return false;
doubleValue = fabs(doubleValue - stepBase());
if (isinf(doubleValue))
return false;
// double's fractional part size is DBL_MAN_DIG-bit. If the current
// value is greater than step*2^DBL_MANT_DIG, the following fmod() makes
// no sense.
if (doubleValue / pow(2.0, DBL_MANT_DIG) > step)
return false;
double remainder = fmod(doubleValue, step);
// Accepts errors in lower 7-bit.
double acceptableError = step / pow(2.0, DBL_MANT_DIG - 7);
return acceptableError < remainder && remainder < (step - acceptableError);
}
case DATE:
case DATETIME:
case DATETIMELOCAL:
case MONTH:
case TIME:
case WEEK: {
const double nan = numeric_limits<double>::quiet_NaN();
double doubleValue = parseToDouble(value(), nan);
doubleValue = fabs(doubleValue - stepBase());
if (!isfinite(doubleValue))
return false;
ASSERT(round(doubleValue) == doubleValue);
ASSERT(round(step) == step);
return fmod(doubleValue, step);
}
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
break;
}
// Non-supported types should be rejected by getAllowedValueStep().
ASSERT_NOT_REACHED();
return false;
}
bool HTMLInputElement::getStepParameters(double* defaultStep, double* stepScaleFactor) const
{
ASSERT(defaultStep);
ASSERT(stepScaleFactor);
switch (inputType()) {
case NUMBER:
case RANGE:
*defaultStep = numberDefaultStep;
*stepScaleFactor = numberStepScaleFactor;
return true;
case DATE:
*defaultStep = dateDefaultStep;
*stepScaleFactor = dateStepScaleFactor;
return true;
case DATETIME:
case DATETIMELOCAL:
*defaultStep = dateTimeDefaultStep;
*stepScaleFactor = dateTimeStepScaleFactor;
return true;
case MONTH:
*defaultStep = monthDefaultStep;
*stepScaleFactor = monthStepScaleFactor;
return true;
case TIME:
*defaultStep = timeDefaultStep;
*stepScaleFactor = timeStepScaleFactor;
return true;
case WEEK:
*defaultStep = weekDefaultStep;
*stepScaleFactor = weekStepScaleFactor;
return true;
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
return false;
}
ASSERT_NOT_REACHED();
return false;
}
bool HTMLInputElement::getAllowedValueStep(double* step) const
{
ASSERT(step);
double defaultStep;
double stepScaleFactor;
if (!getStepParameters(&defaultStep, &stepScaleFactor))
return false;
const AtomicString& stepString = getAttribute(stepAttr);
if (stepString.isEmpty()) {
*step = defaultStep * stepScaleFactor;
return true;
}
if (equalIgnoringCase(stepString, "any"))
return false;
double parsed;
if (!parseToDoubleForNumberType(stepString, &parsed) || parsed <= 0.0) {
*step = defaultStep * stepScaleFactor;
return true;
}
// For DATE, MONTH, WEEK, the parsed value should be an integer.
if (inputType() == DATE || inputType() == MONTH || inputType() == WEEK)
parsed = max(round(parsed), 1.0);
double result = parsed * stepScaleFactor;
// For DATETIME, DATETIMELOCAL, TIME, the result should be an integer.
if (inputType() == DATETIME || inputType() == DATETIMELOCAL || inputType() == TIME)
result = max(round(result), 1.0);
ASSERT(result > 0);
*step = result;
return true;
}
void HTMLInputElement::applyStep(double count, ExceptionCode& ec)
{
double step;
if (!getAllowedValueStep(&step)) {
ec = INVALID_STATE_ERR;
return;
}
const double nan = numeric_limits<double>::quiet_NaN();
double current = parseToDouble(value(), nan);
if (!isfinite(current)) {
ec = INVALID_STATE_ERR;
return;
}
double newValue = current + step * count;
if (isinf(newValue)) {
ec = INVALID_STATE_ERR;
return;
}
if (newValue < minimum()) {
ec = INVALID_STATE_ERR;
return;
}
double base = stepBase();
newValue = base + round((newValue - base) / step) * step;
if (newValue > maximum()) {
ec = INVALID_STATE_ERR;
return;
}
setValueAsNumber(newValue, ec);
}
void HTMLInputElement::stepUp(int n, ExceptionCode& ec)
{
applyStep(n, ec);
}
void HTMLInputElement::stepDown(int n, ExceptionCode& ec)
{
applyStep(-n, ec);
}
bool HTMLInputElement::isKeyboardFocusable(KeyboardEvent* event) const
{
// If text fields can be focused, then they should always be keyboard focusable
if (isTextField())
return HTMLFormControlElementWithState::isFocusable();
// If the base class says we can't be focused, then we can stop now.
if (!HTMLFormControlElementWithState::isKeyboardFocusable(event))
return false;
if (inputType() == RADIO) {
// Never allow keyboard tabbing to leave you in the same radio group. Always
// skip any other elements in the group.
Node* currentFocusedNode = document()->focusedNode();
if (currentFocusedNode && currentFocusedNode->hasTagName(inputTag)) {
HTMLInputElement* focusedInput = static_cast<HTMLInputElement*>(currentFocusedNode);
if (focusedInput->inputType() == RADIO && focusedInput->form() == form() &&
focusedInput->name() == name())
return false;
}
// Allow keyboard focus if we're checked or if nothing in the group is checked.
return checked() || !checkedRadioButtons(this).checkedButtonForGroup(name());
}
return true;
}
bool HTMLInputElement::isMouseFocusable() const
{
if (isTextField())
return HTMLFormControlElementWithState::isFocusable();
return HTMLFormControlElementWithState::isMouseFocusable();
}
void HTMLInputElement::updateFocusAppearance(bool restorePreviousSelection)
{
if (isTextField())
InputElement::updateFocusAppearance(m_data, this, this, restorePreviousSelection);
else
HTMLFormControlElementWithState::updateFocusAppearance(restorePreviousSelection);
}
void HTMLInputElement::aboutToUnload()
{
InputElement::aboutToUnload(this, this);
}
bool HTMLInputElement::shouldUseInputMethod() const
{
return m_type == TEXT || m_type == SEARCH || m_type == ISINDEX;
}
void HTMLInputElement::handleFocusEvent()
{
InputElement::dispatchFocusEvent(this, this);
if (isTextField())
m_autofilled = false;
}
void HTMLInputElement::handleBlurEvent()
{
InputElement::dispatchBlurEvent(this, this);
}
void HTMLInputElement::setType(const String& t)
{
if (t.isEmpty()) {
int exccode;
removeAttribute(typeAttr, exccode);
} else
setAttribute(typeAttr, t);
}
typedef HashMap<String, HTMLInputElement::InputType, CaseFoldingHash> InputTypeMap;
static const InputTypeMap* createTypeMap()
{
InputTypeMap* map = new InputTypeMap;
map->add("button", HTMLInputElement::BUTTON);
map->add("checkbox", HTMLInputElement::CHECKBOX);
map->add("color", HTMLInputElement::COLOR);
map->add("date", HTMLInputElement::DATE);
map->add("datetime", HTMLInputElement::DATETIME);
map->add("datetime-local", HTMLInputElement::DATETIMELOCAL);
map->add("email", HTMLInputElement::EMAIL);
map->add("file", HTMLInputElement::FILE);
map->add("hidden", HTMLInputElement::HIDDEN);
map->add("image", HTMLInputElement::IMAGE);
map->add("khtml_isindex", HTMLInputElement::ISINDEX);
map->add("month", HTMLInputElement::MONTH);
map->add("number", HTMLInputElement::NUMBER);
map->add("password", HTMLInputElement::PASSWORD);
map->add("radio", HTMLInputElement::RADIO);
map->add("range", HTMLInputElement::RANGE);
map->add("reset", HTMLInputElement::RESET);
map->add("search", HTMLInputElement::SEARCH);
map->add("submit", HTMLInputElement::SUBMIT);
map->add("tel", HTMLInputElement::TELEPHONE);
map->add("time", HTMLInputElement::TIME);
map->add("url", HTMLInputElement::URL);
map->add("week", HTMLInputElement::WEEK);
// No need to register "text" because it is the default type.
return map;
}
void HTMLInputElement::setInputType(const String& t)
{
static const InputTypeMap* typeMap = createTypeMap();
InputType newType = t.isNull() ? TEXT : typeMap->get(t);
// IMPORTANT: Don't allow the type to be changed to FILE after the first
// type change, otherwise a JavaScript programmer would be able to set a text
// field's value to something like /etc/passwd and then change it to a file field.
if (inputType() != newType) {
bool oldWillValidate = willValidate();
if (newType == FILE && m_haveType)
// Set the attribute back to the old value.
// Useful in case we were called from inside parseMappedAttribute.
setAttribute(typeAttr, type());
else {
checkedRadioButtons(this).removeButton(this);
if (newType == FILE && !m_fileList)
m_fileList = FileList::create();
bool wasAttached = attached();
if (wasAttached)
detach();
bool didStoreValue = storesValueSeparateFromAttribute();
bool wasPasswordField = inputType() == PASSWORD;
bool didRespectHeightAndWidth = respectHeightAndWidthAttrs();
m_type = newType;
bool willStoreValue = storesValueSeparateFromAttribute();
bool isPasswordField = inputType() == PASSWORD;
bool willRespectHeightAndWidth = respectHeightAndWidthAttrs();
if (didStoreValue && !willStoreValue && !m_data.value().isNull()) {
setAttribute(valueAttr, m_data.value());
m_data.setValue(String());
}
if (!didStoreValue && willStoreValue)
m_data.setValue(sanitizeValue(getAttribute(valueAttr)));
else
InputElement::updateValueIfNeeded(m_data, this);
if (wasPasswordField && !isPasswordField)
unregisterForActivationCallbackIfNeeded();
else if (!wasPasswordField && isPasswordField)
registerForActivationCallbackIfNeeded();
if (didRespectHeightAndWidth != willRespectHeightAndWidth) {
NamedMappedAttrMap* map = mappedAttributes();
ASSERT(map);
if (Attribute* height = map->getAttributeItem(heightAttr))
attributeChanged(height, false);
if (Attribute* width = map->getAttributeItem(widthAttr))
attributeChanged(width, false);
if (Attribute* align = map->getAttributeItem(alignAttr))
attributeChanged(align, false);
}
if (wasAttached) {
attach();
if (document()->focusedNode() == this)
updateFocusAppearance(true);
}
checkedRadioButtons(this).addButton(this);
}
setNeedsValidityCheck();
if (oldWillValidate != willValidate())
setNeedsWillValidateCheck();
InputElement::notifyFormStateChanged(this);
}
m_haveType = true;
if (inputType() != IMAGE && m_imageLoader)
m_imageLoader.clear();
}
static const AtomicString* createFormControlTypes()
{
AtomicString* types = new AtomicString[HTMLInputElement::numberOfTypes];
// The values must be lowercased because they will be the return values of
// input.type and it must be lowercase according to DOM Level 2.
types[HTMLInputElement::BUTTON] = "button";
types[HTMLInputElement::CHECKBOX] = "checkbox";
types[HTMLInputElement::COLOR] = "color";
types[HTMLInputElement::DATE] = "date";
types[HTMLInputElement::DATETIME] = "datetime";
types[HTMLInputElement::DATETIMELOCAL] = "datetime-local";
types[HTMLInputElement::EMAIL] = "email";
types[HTMLInputElement::FILE] = "file";
types[HTMLInputElement::HIDDEN] = "hidden";
types[HTMLInputElement::IMAGE] = "image";
types[HTMLInputElement::ISINDEX] = emptyAtom;
types[HTMLInputElement::MONTH] = "month";
types[HTMLInputElement::NUMBER] = "number";
types[HTMLInputElement::PASSWORD] = "password";
types[HTMLInputElement::RADIO] = "radio";
types[HTMLInputElement::RANGE] = "range";
types[HTMLInputElement::RESET] = "reset";
types[HTMLInputElement::SEARCH] = "search";
types[HTMLInputElement::SUBMIT] = "submit";
types[HTMLInputElement::TELEPHONE] = "tel";
types[HTMLInputElement::TEXT] = "text";
types[HTMLInputElement::TIME] = "time";
types[HTMLInputElement::URL] = "url";
types[HTMLInputElement::WEEK] = "week";
return types;
}
const AtomicString& HTMLInputElement::formControlType() const
{
static const AtomicString* formControlTypes = createFormControlTypes();
return formControlTypes[inputType()];
}
bool HTMLInputElement::saveFormControlState(String& result) const
{
if (!autoComplete())
return false;
switch (inputType()) {
case BUTTON:
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case MONTH:
case NUMBER:
case RANGE:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
result = value();
return true;
case CHECKBOX:
case RADIO:
result = checked() ? "on" : "off";
return true;
case PASSWORD:
return false;
}
ASSERT_NOT_REACHED();
return false;
}
void HTMLInputElement::restoreFormControlState(const String& state)
{
ASSERT(inputType() != PASSWORD); // should never save/restore password fields
switch (inputType()) {
case BUTTON:
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case MONTH:
case NUMBER:
case RANGE:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
setValue(state);
break;
case CHECKBOX:
case RADIO:
setChecked(state == "on");
break;
case PASSWORD:
break;
}
}
bool HTMLInputElement::canStartSelection() const
{
if (!isTextField())
return false;
return HTMLFormControlElementWithState::canStartSelection();
}
bool HTMLInputElement::canHaveSelection() const
{
return isTextField();
}
void HTMLInputElement::accessKeyAction(bool sendToAnyElement)
{
switch (inputType()) {
case BUTTON:
case CHECKBOX:
case FILE:
case IMAGE:
case RADIO:
case RANGE:
case RESET:
case SUBMIT:
focus(false);
// send the mouse button events iff the caller specified sendToAnyElement
dispatchSimulatedClick(0, sendToAnyElement);
break;
case HIDDEN:
// a no-op for this type
break;
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case ISINDEX:
case MONTH:
case NUMBER:
case PASSWORD:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
// should never restore previous selection here
focus(false);
break;
}
}
bool HTMLInputElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
{
if (((attrName == heightAttr || attrName == widthAttr) && respectHeightAndWidthAttrs()) ||
attrName == vspaceAttr ||
attrName == hspaceAttr) {
result = eUniversal;
return false;
}
if (attrName == alignAttr) {
if (inputType() == IMAGE) {
// Share with <img> since the alignment behavior is the same.
result = eReplaced;
return false;
}
}
return HTMLElement::mapToEntry(attrName, result);
}
void HTMLInputElement::parseMappedAttribute(MappedAttribute *attr)
{
if (attr->name() == nameAttr) {
checkedRadioButtons(this).removeButton(this);
m_data.setName(attr->value());
checkedRadioButtons(this).addButton(this);
HTMLFormControlElementWithState::parseMappedAttribute(attr);
} else if (attr->name() == autocompleteAttr) {
if (equalIgnoringCase(attr->value(), "off")) {
m_autocomplete = Off;
registerForActivationCallbackIfNeeded();
} else {
bool needsToUnregister = m_autocomplete == Off;
if (attr->isEmpty())
m_autocomplete = Uninitialized;
else
m_autocomplete = On;
if (needsToUnregister)
unregisterForActivationCallbackIfNeeded();
}
} else if (attr->name() == typeAttr) {
setInputType(attr->value());
} else if (attr->name() == valueAttr) {
// We only need to setChanged if the form is looking at the default value right now.
if (m_data.value().isNull())
setNeedsStyleRecalc();
setFormControlValueMatchesRenderer(false);
setNeedsValidityCheck();
} else if (attr->name() == checkedAttr) {
m_defaultChecked = !attr->isNull();
if (m_useDefaultChecked) {
setChecked(m_defaultChecked);
m_useDefaultChecked = true;
}
setNeedsValidityCheck();
} else if (attr->name() == maxlengthAttr) {
InputElement::parseMaxLengthAttribute(m_data, this, this, attr);
setNeedsValidityCheck();
} else if (attr->name() == sizeAttr)
InputElement::parseSizeAttribute(m_data, this, attr);
else if (attr->name() == altAttr) {
if (renderer() && inputType() == IMAGE)
toRenderImage(renderer())->updateAltText();
} else if (attr->name() == srcAttr) {
if (renderer() && inputType() == IMAGE) {
if (!m_imageLoader)
m_imageLoader.set(new HTMLImageLoader(this));
m_imageLoader->updateFromElementIgnoringPreviousError();
}
} else if (attr->name() == usemapAttr ||
attr->name() == accesskeyAttr) {
// FIXME: ignore for the moment
} else if (attr->name() == vspaceAttr) {
addCSSLength(attr, CSSPropertyMarginTop, attr->value());
addCSSLength(attr, CSSPropertyMarginBottom, attr->value());
} else if (attr->name() == hspaceAttr) {
addCSSLength(attr, CSSPropertyMarginLeft, attr->value());
addCSSLength(attr, CSSPropertyMarginRight, attr->value());
} else if (attr->name() == alignAttr) {
if (inputType() == IMAGE)
addHTMLAlignment(attr);
} else if (attr->name() == widthAttr) {
if (respectHeightAndWidthAttrs())
addCSSLength(attr, CSSPropertyWidth, attr->value());
} else if (attr->name() == heightAttr) {
if (respectHeightAndWidthAttrs())
addCSSLength(attr, CSSPropertyHeight, attr->value());
}
// Search field and slider attributes all just cause updateFromElement to be called through style
// recalcing.
else if (attr->name() == onsearchAttr) {
setAttributeEventListener(eventNames().searchEvent, createAttributeEventListener(this, attr));
} else if (attr->name() == resultsAttr) {
int oldResults = m_maxResults;
m_maxResults = !attr->isNull() ? std::min(attr->value().toInt(), maxSavedResults) : -1;
// FIXME: Detaching just for maxResults change is not ideal. We should figure out the right
// time to relayout for this change.
if (m_maxResults != oldResults && (m_maxResults <= 0 || oldResults <= 0) && attached()) {
detach();
attach();
}
setNeedsStyleRecalc();
} else if (attr->name() == autosaveAttr
|| attr->name() == incrementalAttr)
setNeedsStyleRecalc();
else if (attr->name() == minAttr
|| attr->name() == maxAttr
|| attr->name() == multipleAttr
|| attr->name() == patternAttr
|| attr->name() == precisionAttr
|| attr->name() == stepAttr)
setNeedsValidityCheck();
#if ENABLE(DATALIST)
else if (attr->name() == listAttr)
m_hasNonEmptyList = !attr->isEmpty();
// FIXME: we need to tell this change to a renderer if the attribute affects the appearance.
#endif
else
HTMLTextFormControlElement::parseMappedAttribute(attr);
}
bool HTMLInputElement::rendererIsNeeded(RenderStyle *style)
{
if (inputType() == HIDDEN)
return false;
return HTMLFormControlElementWithState::rendererIsNeeded(style);
}
RenderObject *HTMLInputElement::createRenderer(RenderArena *arena, RenderStyle *style)
{
switch (inputType()) {
case BUTTON:
case RESET:
case SUBMIT:
return new (arena) RenderButton(this);
case CHECKBOX:
case RADIO:
return RenderObject::createObject(this, style);
case FILE:
return new (arena) RenderFileUploadControl(this);
case HIDDEN:
break;
case IMAGE:
return new (arena) RenderImage(this);
case RANGE:
return new (arena) RenderSlider(this);
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case ISINDEX:
case MONTH:
case NUMBER:
case PASSWORD:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
return new (arena) RenderTextControlSingleLine(this, placeholderShouldBeVisible());
}
ASSERT(false);
return 0;
}
void HTMLInputElement::attach()
{
if (!m_inited) {
if (!m_haveType)
setInputType(getAttribute(typeAttr));
m_inited = true;
}
HTMLFormControlElementWithState::attach();
if (inputType() == IMAGE) {
if (!m_imageLoader)
m_imageLoader.set(new HTMLImageLoader(this));
m_imageLoader->updateFromElement();
if (renderer() && m_imageLoader->haveFiredBeforeLoadEvent()) {
RenderImage* imageObj = toRenderImage(renderer());
imageObj->setCachedImage(m_imageLoader->image());
// If we have no image at all because we have no src attribute, set
// image height and width for the alt text instead.
if (!m_imageLoader->image() && !imageObj->cachedImage())
imageObj->setImageSizeForAltText();
}
}
if (document()->focusedNode() == this)
document()->updateFocusAppearanceSoon(true /* restore selection */);
}
void HTMLInputElement::detach()
{
HTMLFormControlElementWithState::detach();
setFormControlValueMatchesRenderer(false);
}
String HTMLInputElement::altText() const
{
// http://www.w3.org/TR/1998/REC-html40-19980424/appendix/notes.html#altgen
// also heavily discussed by Hixie on bugzilla
// note this is intentionally different to HTMLImageElement::altText()
String alt = getAttribute(altAttr);
// fall back to title attribute
if (alt.isNull())
alt = getAttribute(titleAttr);
if (alt.isNull())
alt = getAttribute(valueAttr);
if (alt.isEmpty())
alt = inputElementAltText();
return alt;
}
bool HTMLInputElement::isSuccessfulSubmitButton() const
{
// HTML spec says that buttons must have names to be considered successful.
// However, other browsers do not impose this constraint. So we do likewise.
return !disabled() && (inputType() == IMAGE || inputType() == SUBMIT);
}
bool HTMLInputElement::isActivatedSubmit() const
{
return m_activeSubmit;
}
void HTMLInputElement::setActivatedSubmit(bool flag)
{
m_activeSubmit = flag;
}
bool HTMLInputElement::appendFormData(FormDataList& encoding, bool multipart)
{
// image generates its own names, but for other types there is no form data unless there's a name
if (name().isEmpty() && inputType() != IMAGE)
return false;
switch (inputType()) {
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case HIDDEN:
case ISINDEX:
case MONTH:
case NUMBER:
case PASSWORD:
case RANGE:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
// always successful
encoding.appendData(name(), value());
return true;
case CHECKBOX:
case RADIO:
if (checked()) {
encoding.appendData(name(), value());
return true;
}
break;
case BUTTON:
case RESET:
// these types of buttons are never successful
return false;
case IMAGE:
if (m_activeSubmit) {
encoding.appendData(name().isEmpty() ? "x" : (name() + ".x"), m_xPos);
encoding.appendData(name().isEmpty() ? "y" : (name() + ".y"), m_yPos);
if (!name().isEmpty() && !value().isEmpty())
encoding.appendData(name(), value());
return true;
}
break;
case SUBMIT:
if (m_activeSubmit) {
String enc_str = valueWithDefault();
encoding.appendData(name(), enc_str);
return true;
}
break;
case FILE: {
unsigned numFiles = m_fileList->length();
if (!multipart) {
// Send only the basenames.
// 4.10.16.4 and 4.10.16.6 sections in HTML5.
// Unlike the multipart case, we have no special
// handling for the empty fileList because Netscape
// doesn't support for non-multipart submission of
// file inputs, and Firefox doesn't add "name=" query
// parameter.
for (unsigned i = 0; i < numFiles; ++i) {
encoding.appendData(name(), m_fileList->item(i)->fileName());
}
return true;
}
// If no filename at all is entered, return successful but empty.
// Null would be more logical, but Netscape posts an empty file. Argh.
if (!numFiles) {
encoding.appendFile(name(), File::create(""));
return true;
}
for (unsigned i = 0; i < numFiles; ++i)
encoding.appendFile(name(), m_fileList->item(i));
return true;
}
}
return false;
}
void HTMLInputElement::reset()
{
if (storesValueSeparateFromAttribute())
setValue(String());
setChecked(m_defaultChecked);
m_useDefaultChecked = true;
}
bool HTMLInputElement::isTextField() const
{
switch (inputType()) {
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case ISINDEX:
case MONTH:
case NUMBER:
case PASSWORD:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
return true;
case BUTTON:
case CHECKBOX:
case FILE:
case HIDDEN:
case IMAGE:
case RADIO:
case RANGE:
case RESET:
case SUBMIT:
return false;
}
ASSERT_NOT_REACHED();
return false;
}
void HTMLInputElement::setChecked(bool nowChecked, bool sendChangeEvent)
{
if (checked() == nowChecked)
return;
checkedRadioButtons(this).removeButton(this);
m_useDefaultChecked = false;
m_checked = nowChecked;
setNeedsStyleRecalc();
checkedRadioButtons(this).addButton(this);
if (renderer() && renderer()->style()->hasAppearance())
renderer()->theme()->stateChanged(renderer(), CheckedState);
// Ideally we'd do this from the render tree (matching
// RenderTextView), but it's not possible to do it at the moment
// because of the way the code is structured.
if (renderer() && AXObjectCache::accessibilityEnabled())
renderer()->document()->axObjectCache()->postNotification(renderer(), AXObjectCache::AXCheckedStateChanged, true);
// Only send a change event for items in the document (avoid firing during
// parsing) and don't send a change event for a radio button that's getting
// unchecked to match other browsers. DOM is not a useful standard for this
// because it says only to fire change events at "lose focus" time, which is
// definitely wrong in practice for these types of elements.
if (sendChangeEvent && inDocument() && (inputType() != RADIO || nowChecked))
dispatchFormControlChangeEvent();
}
void HTMLInputElement::setIndeterminate(bool _indeterminate)
{
// Only checkboxes honor indeterminate.
if (inputType() != CHECKBOX || indeterminate() == _indeterminate)
return;
m_indeterminate = _indeterminate;
setNeedsStyleRecalc();
if (renderer() && renderer()->style()->hasAppearance())
renderer()->theme()->stateChanged(renderer(), CheckedState);
}
int HTMLInputElement::size() const
{
return m_data.size();
}
void HTMLInputElement::copyNonAttributeProperties(const Element* source)
{
const HTMLInputElement* sourceElement = static_cast<const HTMLInputElement*>(source);
m_data.setValue(sourceElement->m_data.value());
setChecked(sourceElement->m_checked);
m_defaultChecked = sourceElement->m_defaultChecked;
m_useDefaultChecked = sourceElement->m_useDefaultChecked;
m_indeterminate = sourceElement->m_indeterminate;
HTMLFormControlElementWithState::copyNonAttributeProperties(source);
}
String HTMLInputElement::value() const
{
// The HTML5 spec (as of the 10/24/08 working draft) says that the value attribute isn't applicable to the file upload control
// but we don't want to break existing websites, who may be relying on being able to get the file name as a value.
if (inputType() == FILE) {
if (!m_fileList->isEmpty())
return m_fileList->item(0)->fileName();
return String();
}
String value = m_data.value();
if (value.isNull()) {
value = sanitizeValue(getAttribute(valueAttr));
// If no attribute exists, then just use "on" or "" based off the checked() state of the control.
if (value.isNull() && (inputType() == CHECKBOX || inputType() == RADIO))
return checked() ? "on" : "";
}
return value;
}
String HTMLInputElement::valueWithDefault() const
{
String v = value();
if (v.isNull()) {
switch (inputType()) {
case BUTTON:
case CHECKBOX:
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case MONTH:
case NUMBER:
case PASSWORD:
case RADIO:
case RANGE:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
break;
case RESET:
v = resetButtonDefaultLabel();
break;
case SUBMIT:
v = submitButtonDefaultLabel();
break;
}
}
return v;
}
void HTMLInputElement::setValueForUser(const String& value)
{
// Call setValue and make it send a change event.
setValue(value, true);
}
const String& HTMLInputElement::suggestedValue() const
{
return m_data.suggestedValue();
}
void HTMLInputElement::setSuggestedValue(const String& value)
{
if (inputType() != TEXT)
return;
setFormControlValueMatchesRenderer(false);
m_data.setSuggestedValue(sanitizeValue(value));
updatePlaceholderVisibility(false);
if (renderer())
renderer()->updateFromElement();
setNeedsStyleRecalc();
}
void HTMLInputElement::setValue(const String& value, bool sendChangeEvent)
{
// For security reasons, we don't allow setting the filename, but we do allow clearing it.
// The HTML5 spec (as of the 10/24/08 working draft) says that the value attribute isn't applicable to the file upload control
// but we don't want to break existing websites, who may be relying on this method to clear things.
if (inputType() == FILE && !value.isEmpty())
return;
setFormControlValueMatchesRenderer(false);
if (storesValueSeparateFromAttribute()) {
if (inputType() == FILE)
m_fileList->clear();
else {
m_data.setValue(sanitizeValue(value));
if (isTextField()) {
updatePlaceholderVisibility(false);
if (inDocument())
document()->updateStyleIfNeeded();
}
}
if (renderer())
renderer()->updateFromElement();
setNeedsStyleRecalc();
} else
setAttribute(valueAttr, sanitizeValue(value));
if (isTextField()) {
unsigned max = m_data.value().length();
if (document()->focusedNode() == this)
InputElement::updateSelectionRange(this, this, max, max);
else
cacheSelection(max, max);
m_data.setSuggestedValue(String());
}
// Don't dispatch the change event when focused, it will be dispatched
// when the control loses focus.
if (sendChangeEvent && document()->focusedNode() != this)
dispatchFormControlChangeEvent();
InputElement::notifyFormStateChanged(this);
setNeedsValidityCheck();
}
double HTMLInputElement::parseToDouble(const String& src, double defaultValue) const
{
switch (inputType()) {
case DATE:
case DATETIME:
case DATETIMELOCAL:
case TIME:
case WEEK: {
DateComponents date;
if (!parseToDateComponents(inputType(), src, &date))
return defaultValue;
double msec = date.millisecondsSinceEpoch();
ASSERT(isfinite(msec));
return msec;
}
case MONTH: {
DateComponents date;
if (!parseToDateComponents(inputType(), src, &date))
return defaultValue;
double months = date.monthsSinceEpoch();
ASSERT(isfinite(months));
return months;
}
case NUMBER:
case RANGE: {
double numberValue;
if (!parseToDoubleForNumberType(src, &numberValue))
return defaultValue;
ASSERT(isfinite(numberValue));
return numberValue;
}
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
return defaultValue;
}
ASSERT_NOT_REACHED();
return defaultValue;
}
double HTMLInputElement::valueAsDate() const
{
switch (inputType()) {
case DATE:
case DATETIME:
case TIME:
case WEEK:
return parseToDouble(value(), DateComponents::invalidMilliseconds());
case MONTH: {
DateComponents date;
if (!parseToDateComponents(inputType(), value(), &date))
return DateComponents::invalidMilliseconds();
double msec = date.millisecondsSinceEpoch();
ASSERT(isfinite(msec));
return msec;
}
case BUTTON:
case CHECKBOX:
case COLOR:
case DATETIMELOCAL: // valueAsDate doesn't work for the DATETIMELOCAL type according to the standard.
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case NUMBER:
case PASSWORD:
case RADIO:
case RANGE:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
return DateComponents::invalidMilliseconds();
}
ASSERT_NOT_REACHED();
return DateComponents::invalidMilliseconds();
}
void HTMLInputElement::setValueAsDate(double value, ExceptionCode& ec)
{
switch (inputType()) {
case DATE:
case DATETIME:
case TIME:
case WEEK:
setValue(serializeForDateTimeTypes(value));
return;
case MONTH: {
DateComponents date;
if (!date.setMillisecondsSinceEpochForMonth(value)) {
setValue(String());
return;
}
setValue(date.toString());
return;
}
case BUTTON:
case CHECKBOX:
case COLOR:
case DATETIMELOCAL: // valueAsDate doesn't work for the DATETIMELOCAL type according to the standard.
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case NUMBER:
case PASSWORD:
case RADIO:
case RANGE:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
ec = INVALID_STATE_ERR;
return;
}
ASSERT_NOT_REACHED();
}
double HTMLInputElement::valueAsNumber() const
{
const double nan = numeric_limits<double>::quiet_NaN();
switch (inputType()) {
case DATE:
case DATETIME:
case DATETIMELOCAL:
case MONTH:
case NUMBER:
case RANGE:
case TIME:
case WEEK:
return parseToDouble(value(), nan);
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
return nan;
}
ASSERT_NOT_REACHED();
return nan;
}
void HTMLInputElement::setValueAsNumber(double newValue, ExceptionCode& ec)
{
if (!isfinite(newValue)) {
ec = NOT_SUPPORTED_ERR;
return;
}
switch (inputType()) {
case DATE:
case DATETIME:
case DATETIMELOCAL:
case MONTH:
case NUMBER:
case RANGE:
case TIME:
case WEEK:
setValue(serialize(newValue));
return;
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
ec = INVALID_STATE_ERR;
return;
}
ASSERT_NOT_REACHED();
}
String HTMLInputElement::serializeForDateTimeTypes(double value) const
{
bool success = false;
DateComponents date;
switch (inputType()) {
case DATE:
success = date.setMillisecondsSinceEpochForDate(value);
break;
case DATETIME:
success = date.setMillisecondsSinceEpochForDateTime(value);
break;
case DATETIMELOCAL:
success = date.setMillisecondsSinceEpochForDateTimeLocal(value);
break;
case MONTH:
success = date.setMonthsSinceEpoch(value);
break;
case TIME:
success = date.setMillisecondsSinceMidnight(value);
break;
case WEEK:
success = date.setMillisecondsSinceEpochForWeek(value);
break;
case NUMBER:
case RANGE:
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
ASSERT_NOT_REACHED();
return String();
}
if (!success)
return String();
double step;
if (!getAllowedValueStep(&step))
return date.toString();
if (!fmod(step, msecPerMinute))
return date.toString(DateComponents::None);
if (!fmod(step, msecPerSecond))
return date.toString(DateComponents::Second);
return date.toString(DateComponents::Millisecond);
}
String HTMLInputElement::serialize(double value) const
{
if (!isfinite(value))
return String();
switch (inputType()) {
case DATE:
case DATETIME:
case DATETIMELOCAL:
case MONTH:
case TIME:
case WEEK:
return serializeForDateTimeTypes(value);
case NUMBER:
case RANGE:
return serializeForNumberType(value);
case BUTTON:
case CHECKBOX:
case COLOR:
case EMAIL:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SEARCH:
case SUBMIT:
case TELEPHONE:
case TEXT:
case URL:
break;
}
ASSERT_NOT_REACHED();
return String();
}
String HTMLInputElement::placeholder() const
{
return getAttribute(placeholderAttr).string();
}
void HTMLInputElement::setPlaceholder(const String& value)
{
setAttribute(placeholderAttr, value);
}
bool HTMLInputElement::searchEventsShouldBeDispatched() const
{
return hasAttribute(incrementalAttr);
}
void HTMLInputElement::setValueFromRenderer(const String& value)
{
// File upload controls will always use setFileListFromRenderer.
ASSERT(inputType() != FILE);
m_data.setSuggestedValue(String());
updatePlaceholderVisibility(false);
InputElement::setValueFromRenderer(m_data, this, this, value);
setNeedsValidityCheck();
}
void HTMLInputElement::setFileListFromRenderer(const Vector<String>& paths)
{
m_fileList->clear();
int size = paths.size();
for (int i = 0; i < size; i++)
m_fileList->append(File::create(paths[i]));
setFormControlValueMatchesRenderer(true);
InputElement::notifyFormStateChanged(this);
setNeedsValidityCheck();
}
bool HTMLInputElement::storesValueSeparateFromAttribute() const
{
switch (inputType()) {
case BUTTON:
case CHECKBOX:
case HIDDEN:
case IMAGE:
case RADIO:
case RESET:
case SUBMIT:
return false;
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case FILE:
case ISINDEX:
case MONTH:
case NUMBER:
case PASSWORD:
case RANGE:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
return true;
}
return false;
}
void* HTMLInputElement::preDispatchEventHandler(Event *evt)
{
// preventDefault or "return false" are used to reverse the automatic checking/selection we do here.
// This result gives us enough info to perform the "undo" in postDispatch of the action we take here.
void* result = 0;
if ((inputType() == CHECKBOX || inputType() == RADIO) && evt->isMouseEvent()
&& evt->type() == eventNames().clickEvent && static_cast<MouseEvent*>(evt)->button() == LeftButton) {
if (inputType() == CHECKBOX) {
// As a way to store the state, we return 0 if we were unchecked, 1 if we were checked, and 2 for
// indeterminate.
if (indeterminate()) {
result = (void*)0x2;
setIndeterminate(false);
} else {
if (checked())
result = (void*)0x1;
setChecked(!checked(), true);
}
} else {
// For radio buttons, store the current selected radio object.
// We really want radio groups to end up in sane states, i.e., to have something checked.
// Therefore if nothing is currently selected, we won't allow this action to be "undone", since
// we want some object in the radio group to actually get selected.
HTMLInputElement* currRadio = checkedRadioButtons(this).checkedButtonForGroup(name());
if (currRadio) {
// We have a radio button selected that is not us. Cache it in our result field and ref it so
// that it can't be destroyed.
currRadio->ref();
result = currRadio;
}
setChecked(true, true);
}
}
return result;
}
void HTMLInputElement::postDispatchEventHandler(Event *evt, void* data)
{
if ((inputType() == CHECKBOX || inputType() == RADIO) && evt->isMouseEvent()
&& evt->type() == eventNames().clickEvent && static_cast<MouseEvent*>(evt)->button() == LeftButton) {
if (inputType() == CHECKBOX) {
// Reverse the checking we did in preDispatch.
if (evt->defaultPrevented() || evt->defaultHandled()) {
if (data == (void*)0x2)
setIndeterminate(true);
else
setChecked(data);
}
} else if (data) {
HTMLInputElement* input = static_cast<HTMLInputElement*>(data);
if (evt->defaultPrevented() || evt->defaultHandled()) {
// Restore the original selected radio button if possible.
// Make sure it is still a radio button and only do the restoration if it still
// belongs to our group.
if (input->form() == form() && input->inputType() == RADIO && input->name() == name()) {
// Ok, the old radio button is still in our form and in our group and is still a
// radio button, so it's safe to restore selection to it.
input->setChecked(true);
}
}
input->deref();
}
// Left clicks on radio buttons and check boxes already performed default actions in preDispatchEventHandler().
evt->setDefaultHandled();
}
}
void HTMLInputElement::defaultEventHandler(Event* evt)
{
// FIXME: It would be better to refactor this for the different types of input element.
// Having them all in one giant function makes this hard to read, and almost all the handling is type-specific.
bool clickDefaultFormButton = false;
if (isTextField() && evt->type() == eventNames().textInputEvent && evt->isTextEvent() && static_cast<TextEvent*>(evt)->data() == "\n")
clickDefaultFormButton = true;
if (inputType() == IMAGE && evt->isMouseEvent() && evt->type() == eventNames().clickEvent) {
// record the mouse position for when we get the DOMActivate event
MouseEvent* me = static_cast<MouseEvent*>(evt);
// FIXME: We could just call offsetX() and offsetY() on the event,
// but that's currently broken, so for now do the computation here.
if (me->isSimulated() || !renderer()) {
m_xPos = 0;
m_yPos = 0;
} else {
// FIXME: This doesn't work correctly with transforms.
// FIXME: pageX/pageY need adjusting for pageZoomFactor(). Use actualPageLocation()?
IntPoint absOffset = roundedIntPoint(renderer()->localToAbsolute());
m_xPos = me->pageX() - absOffset.x();
m_yPos = me->pageY() - absOffset.y();
}
}
if (isTextField()
&& evt->type() == eventNames().keydownEvent
&& evt->isKeyboardEvent()
&& focused()
&& document()->frame()
&& document()->frame()->doTextFieldCommandFromEvent(this, static_cast<KeyboardEvent*>(evt))) {
evt->setDefaultHandled();
return;
}
if (inputType() == RADIO
&& evt->isMouseEvent()
&& evt->type() == eventNames().clickEvent
&& static_cast<MouseEvent*>(evt)->button() == LeftButton) {
evt->setDefaultHandled();
return;
}
// Call the base event handler before any of our own event handling for almost all events in text fields.
// Makes editing keyboard handling take precedence over the keydown and keypress handling in this function.
bool callBaseClassEarly = isTextField() && !clickDefaultFormButton
&& (evt->type() == eventNames().keydownEvent || evt->type() == eventNames().keypressEvent);
if (callBaseClassEarly) {
HTMLFormControlElementWithState::defaultEventHandler(evt);
if (evt->defaultHandled())
return;
}
// DOMActivate events cause the input to be "activated" - in the case of image and submit inputs, this means
// actually submitting the form. For reset inputs, the form is reset. These events are sent when the user clicks
// on the element, or presses enter while it is the active element. JavaScript code wishing to activate the element
// must dispatch a DOMActivate event - a click event will not do the job.
if (evt->type() == eventNames().DOMActivateEvent && !disabled()) {
if (inputType() == IMAGE || inputType() == SUBMIT || inputType() == RESET) {
if (!form())
return;
if (inputType() == RESET)
form()->reset();
else {
m_activeSubmit = true;
// FIXME: Would be cleaner to get m_xPos and m_yPos out of the underlying mouse
// event (if any) here instead of relying on the variables set above when
// processing the click event. Even better, appendFormData could pass the
// event in, and then we could get rid of m_xPos and m_yPos altogether!
if (!form()->prepareSubmit(evt)) {
m_xPos = 0;
m_yPos = 0;
}
m_activeSubmit = false;
}
} else if (inputType() == FILE && renderer())
toRenderFileUploadControl(renderer())->click();
}
// Use key press event here since sending simulated mouse events
// on key down blocks the proper sending of the key press event.
if (evt->type() == eventNames().keypressEvent && evt->isKeyboardEvent()) {
bool clickElement = false;
int charCode = static_cast<KeyboardEvent*>(evt)->charCode();
if (charCode == '\r') {
switch (inputType()) {
case CHECKBOX:
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case HIDDEN:
case ISINDEX:
case MONTH:
case NUMBER:
case PASSWORD:
case RANGE:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
// Simulate mouse click on the default form button for enter for these types of elements.
clickDefaultFormButton = true;
break;
case BUTTON:
case FILE:
case IMAGE:
case RESET:
case SUBMIT:
// Simulate mouse click for enter for these types of elements.
clickElement = true;
break;
case RADIO:
break; // Don't do anything for enter on a radio button.
}
} else if (charCode == ' ') {
switch (inputType()) {
case BUTTON:
case CHECKBOX:
case FILE:
case IMAGE:
case RESET:
case SUBMIT:
case RADIO:
// Prevent scrolling down the page.
evt->setDefaultHandled();
return;
default:
break;
}
}
if (clickElement) {
dispatchSimulatedClick(evt);
evt->setDefaultHandled();
return;
}
}
if (evt->type() == eventNames().keydownEvent && evt->isKeyboardEvent()) {
String key = static_cast<KeyboardEvent*>(evt)->keyIdentifier();
if (key == "U+0020") {
switch (inputType()) {
case BUTTON:
case CHECKBOX:
case FILE:
case IMAGE:
case RESET:
case SUBMIT:
case RADIO:
setActive(true, true);
// No setDefaultHandled(), because IE dispatches a keypress in this case
// and the caller will only dispatch a keypress if we don't call setDefaultHandled.
return;
default:
break;
}
}
if (inputType() == RADIO && (key == "Up" || key == "Down" || key == "Left" || key == "Right")) {
// Left and up mean "previous radio button".
// Right and down mean "next radio button".
// Tested in WinIE, and even for RTL, left still means previous radio button (and so moves
// to the right). Seems strange, but we'll match it.
bool forward = (key == "Down" || key == "Right");
// We can only stay within the form's children if the form hasn't been demoted to a leaf because
// of malformed HTML.
Node* n = this;
while ((n = (forward ? n->traverseNextNode() : n->traversePreviousNode()))) {
// Once we encounter a form element, we know we're through.
if (n->hasTagName(formTag))
break;
// Look for more radio buttons.
if (n->hasTagName(inputTag)) {
HTMLInputElement* elt = static_cast<HTMLInputElement*>(n);
if (elt->form() != form())
break;
if (n->hasTagName(inputTag)) {
HTMLInputElement* inputElt = static_cast<HTMLInputElement*>(n);
if (inputElt->inputType() == RADIO && inputElt->name() == name() && inputElt->isFocusable()) {
inputElt->setChecked(true);
document()->setFocusedNode(inputElt);
inputElt->dispatchSimulatedClick(evt, false, false);
evt->setDefaultHandled();
break;
}
}
}
}
}
}
if (evt->type() == eventNames().keyupEvent && evt->isKeyboardEvent()) {
bool clickElement = false;
String key = static_cast<KeyboardEvent*>(evt)->keyIdentifier();
if (key == "U+0020") {
switch (inputType()) {
case BUTTON:
case CHECKBOX:
case FILE:
case IMAGE:
case RESET:
case SUBMIT:
// Simulate mouse click for spacebar for these types of elements.
// The AppKit already does this for some, but not all, of them.
clickElement = true;
break;
case RADIO:
// If an unselected radio is tabbed into (because the entire group has nothing
// checked, or because of some explicit .focus() call), then allow space to check it.
if (!checked())
clickElement = true;
break;
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case HIDDEN:
case ISINDEX:
case MONTH:
case NUMBER:
case PASSWORD:
case RANGE:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
break;
}
}
if (clickElement) {
if (active())
dispatchSimulatedClick(evt);
evt->setDefaultHandled();
return;
}
}
if (clickDefaultFormButton) {
if (isSearchField()) {
addSearchResult();
onSearch();
}
// Fire onChange for text fields.
RenderObject* r = renderer();
if (r && r->isTextField() && toRenderTextControl(r)->wasChangedSinceLastChangeEvent()) {
dispatchFormControlChangeEvent();
// Refetch the renderer since arbitrary JS code run during onchange can do anything, including destroying it.
r = renderer();
if (r && r->isTextField())
toRenderTextControl(r)->setChangedSinceLastChangeEvent(false);
}
RefPtr<HTMLFormElement> formForSubmission = form();
// If there is no form and the element is an <isindex>, then create a temporary form just to be used for submission.
if (!formForSubmission && inputType() == ISINDEX)
formForSubmission = createTemporaryFormForIsIndex();
// Form may never have been present, or may have been destroyed by code responding to the change event.
if (formForSubmission)
formForSubmission->submitClick(evt);
evt->setDefaultHandled();
return;
}
if (evt->isBeforeTextInsertedEvent())
InputElement::handleBeforeTextInsertedEvent(m_data, this, this, evt);
if (isTextField() && renderer() && (evt->isMouseEvent() || evt->isDragEvent() || evt->isWheelEvent() || evt->type() == eventNames().blurEvent || evt->type() == eventNames().focusEvent))
toRenderTextControlSingleLine(renderer())->forwardEvent(evt);
if (inputType() == RANGE && renderer() && (evt->isMouseEvent() || evt->isDragEvent() || evt->isWheelEvent()))
toRenderSlider(renderer())->forwardEvent(evt);
if (!callBaseClassEarly && !evt->defaultHandled())
HTMLFormControlElementWithState::defaultEventHandler(evt);
}
PassRefPtr<HTMLFormElement> HTMLInputElement::createTemporaryFormForIsIndex()
{
RefPtr<HTMLFormElement> form = new HTMLFormElement(formTag, document());
form->registerFormElement(this);
form->setMethod("GET");
if (!document()->baseURL().isEmpty()) {
// We treat the href property of the <base> element as the form action, as per section 7.5
// "Queries and Indexes" of the HTML 2.0 spec. <http://www.w3.org/MarkUp/html-spec/html-spec_7.html#SEC7.5>.
form->setAction(document()->baseURL().string());
}
return form.release();
}
bool HTMLInputElement::isURLAttribute(Attribute *attr) const
{
return (attr->name() == srcAttr);
}
String HTMLInputElement::defaultValue() const
{
return getAttribute(valueAttr);
}
void HTMLInputElement::setDefaultValue(const String &value)
{
setAttribute(valueAttr, value);
}
bool HTMLInputElement::defaultChecked() const
{
return !getAttribute(checkedAttr).isNull();
}
void HTMLInputElement::setDefaultChecked(bool defaultChecked)
{
setAttribute(checkedAttr, defaultChecked ? "" : 0);
}
void HTMLInputElement::setDefaultName(const AtomicString& name)
{
m_data.setName(name);
}
String HTMLInputElement::accept() const
{
return getAttribute(acceptAttr);
}
void HTMLInputElement::setAccept(const String &value)
{
setAttribute(acceptAttr, value);
}
String HTMLInputElement::accessKey() const
{
return getAttribute(accesskeyAttr);
}
void HTMLInputElement::setAccessKey(const String &value)
{
setAttribute(accesskeyAttr, value);
}
String HTMLInputElement::align() const
{
return getAttribute(alignAttr);
}
void HTMLInputElement::setAlign(const String &value)
{
setAttribute(alignAttr, value);
}
String HTMLInputElement::alt() const
{
return getAttribute(altAttr);
}
void HTMLInputElement::setAlt(const String &value)
{
setAttribute(altAttr, value);
}
int HTMLInputElement::maxLength() const
{
return m_data.maxLength();
}
void HTMLInputElement::setMaxLength(int maxLength, ExceptionCode& ec)
{
if (maxLength < 0)
ec = INDEX_SIZE_ERR;
else
setAttribute(maxlengthAttr, String::number(maxLength));
}
bool HTMLInputElement::multiple() const
{
return !getAttribute(multipleAttr).isNull();
}
void HTMLInputElement::setMultiple(bool multiple)
{
setAttribute(multipleAttr, multiple ? "" : 0);
}
void HTMLInputElement::setSize(unsigned _size)
{
setAttribute(sizeAttr, String::number(_size));
}
KURL HTMLInputElement::src() const
{
return document()->completeURL(getAttribute(srcAttr));
}
void HTMLInputElement::setSrc(const String &value)
{
setAttribute(srcAttr, value);
}
String HTMLInputElement::useMap() const
{
return getAttribute(usemapAttr);
}
void HTMLInputElement::setUseMap(const String &value)
{
setAttribute(usemapAttr, value);
}
void HTMLInputElement::setAutofilled(bool b)
{
if (b == m_autofilled)
return;
m_autofilled = b;
setNeedsStyleRecalc();
}
FileList* HTMLInputElement::files()
{
if (inputType() != FILE)
return 0;
return m_fileList.get();
}
String HTMLInputElement::sanitizeValue(const String& proposedValue) const
{
if (isTextField())
return InputElement::sanitizeValue(this, proposedValue);
return proposedValue;
}
bool HTMLInputElement::needsActivationCallback()
{
return inputType() == PASSWORD || m_autocomplete == Off;
}
void HTMLInputElement::registerForActivationCallbackIfNeeded()
{
if (needsActivationCallback())
document()->registerForDocumentActivationCallbacks(this);
}
void HTMLInputElement::unregisterForActivationCallbackIfNeeded()
{
if (!needsActivationCallback())
document()->unregisterForDocumentActivationCallbacks(this);
}
bool HTMLInputElement::isRequiredFormControl() const
{
if (!required())
return false;
switch (inputType()) {
case CHECKBOX:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case FILE:
case MONTH:
case NUMBER:
case PASSWORD:
case RADIO:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK:
return true;
case BUTTON:
case COLOR:
case HIDDEN:
case IMAGE:
case ISINDEX:
case RANGE:
case RESET:
case SUBMIT:
return false;
}
ASSERT_NOT_REACHED();
return false;
}
void HTMLInputElement::cacheSelection(int start, int end)
{
m_data.setCachedSelectionStart(start);
m_data.setCachedSelectionEnd(end);
}
void HTMLInputElement::addSearchResult()
{
ASSERT(isSearchField());
if (renderer())
toRenderTextControlSingleLine(renderer())->addSearchResult();
}
void HTMLInputElement::onSearch()
{
ASSERT(isSearchField());
if (renderer())
toRenderTextControlSingleLine(renderer())->stopSearchEventTimer();
dispatchEvent(Event::create(eventNames().searchEvent, true, false));
}
void HTMLInputElement::documentDidBecomeActive()
{
ASSERT(needsActivationCallback());
reset();
}
void HTMLInputElement::willMoveToNewOwnerDocument()
{
// Always unregister for cache callbacks when leaving a document, even if we would otherwise like to be registered
if (needsActivationCallback())
document()->unregisterForDocumentActivationCallbacks(this);
document()->checkedRadioButtons().removeButton(this);
HTMLFormControlElementWithState::willMoveToNewOwnerDocument();
}
void HTMLInputElement::didMoveToNewOwnerDocument()
{
registerForActivationCallbackIfNeeded();
HTMLFormControlElementWithState::didMoveToNewOwnerDocument();
}
void HTMLInputElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const
{
HTMLFormControlElementWithState::addSubresourceAttributeURLs(urls);
addSubresourceURL(urls, src());
}
bool HTMLInputElement::willValidate() const
{
// FIXME: This shall check for new WF2 input types too
return HTMLFormControlElementWithState::willValidate() && inputType() != HIDDEN &&
inputType() != BUTTON && inputType() != RESET;
}
String HTMLInputElement::serializeForNumberType(double number)
{
// According to HTML5, "the best representation of the number n as a floating
// point number" is a string produced by applying ToString() to n.
DtoaBuffer buffer;
unsigned length;
doubleToStringInJavaScriptFormat(number, buffer, &length);
return String(buffer, length);
}
bool HTMLInputElement::parseToDoubleForNumberType(const String& src, double* out)
{
// See HTML5 2.4.4.3 `Real numbers.'
if (src.isEmpty())
return false;
// String::toDouble() accepts leading + \t \n \v \f \r and SPACE, which are invalid in HTML5.
// So, check the first character.
if (src[0] != '-' && (src[0] < '0' || src[0] > '9'))
return false;
bool valid = false;
double value = src.toDouble(&valid);
if (!valid)
return false;
// NaN and Infinity are not valid numbers according to the standard.
if (!isfinite(value))
return false;
// -0 -> 0
if (!value)
value = 0;
if (out)
*out = value;
return true;
}
bool HTMLInputElement::parseToDateComponents(InputType type, const String& formString, DateComponents* out)
{
if (formString.isEmpty())
return false;
DateComponents ignoredResult;
if (!out)
out = &ignoredResult;
const UChar* characters = formString.characters();
unsigned length = formString.length();
unsigned end;
switch (type) {
case DATE:
return out->parseDate(characters, length, 0, end) && end == length;
case DATETIME:
return out->parseDateTime(characters, length, 0, end) && end == length;
case DATETIMELOCAL:
return out->parseDateTimeLocal(characters, length, 0, end) && end == length;
case MONTH:
return out->parseMonth(characters, length, 0, end) && end == length;
case WEEK:
return out->parseWeek(characters, length, 0, end) && end == length;
case TIME:
return out->parseTime(characters, length, 0, end) && end == length;
default:
ASSERT_NOT_REACHED();
return false;
}
}
#if ENABLE(DATALIST)
HTMLElement* HTMLInputElement::list() const
{
return dataList();
}
HTMLDataListElement* HTMLInputElement::dataList() const
{
if (!m_hasNonEmptyList)
return 0;
switch (inputType()) {
case COLOR:
case DATE:
case DATETIME:
case DATETIMELOCAL:
case EMAIL:
case MONTH:
case NUMBER:
case RANGE:
case SEARCH:
case TELEPHONE:
case TEXT:
case TIME:
case URL:
case WEEK: {
Element* element = document()->getElementById(getAttribute(listAttr));
if (element && element->hasTagName(datalistTag))
return static_cast<HTMLDataListElement*>(element);
break;
}
case BUTTON:
case CHECKBOX:
case FILE:
case HIDDEN:
case IMAGE:
case ISINDEX:
case PASSWORD:
case RADIO:
case RESET:
case SUBMIT:
break;
}
return 0;
}
HTMLOptionElement* HTMLInputElement::selectedOption() const
{
String currentValue = value();
// The empty value never matches to a datalist option because it
// doesn't represent a suggestion according to the standard.
if (currentValue.isEmpty())
return 0;
HTMLDataListElement* sourceElement = dataList();
if (!sourceElement)
return 0;
RefPtr<HTMLCollection> options = sourceElement->options();
for (unsigned i = 0; options && i < options->length(); ++i) {
HTMLOptionElement* option = static_cast<HTMLOptionElement*>(options->item(i));
if (!option->disabled() && currentValue == option->value())
return option;
}
return 0;
}
#endif // ENABLE(DATALIST)
} // namespace
|