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
|
+[WebPreferences initialize]
_contains
_WebKitLinkedOnOrAfter
_WebKitLinkTimeVersion
+[WebPreferences standardPreferences]
-[WebPreferences initWithIdentifier:]
+[WebPreferences(WebInternal) _IBCreatorID]
+[WebPreferences(WebPrivate) _getInstanceForIdentifier:]
+[WebPreferences(WebPrivate) _setInstance:forIdentifier:]
-[WebPreferences(WebPrivate) _postPreferencesChangesNotification]
-[WebPreferences setAutosaves:]
+[WebIconDatabase delayDatabaseCleanup]
-[NSString(WebKitExtras) _web_stringByAbbreviatingWithTildeInPath]
+[WebIconDatabase sharedIconDatabase]
-[WebIconDatabase init]
__Z13defaultClientv
-[WebIconDatabase(WebInternal) _databaseDirectory]
-[WebPreferences privateBrowsingEnabled]
-[WebPreferences _boolValueForKey:]
-[WebPreferences _integerValueForKey:]
-[WebPreferences _valueForKey:]
+[WebView initialize]
+[WebView(WebPrivate) _registerViewClass:representationClass:forURLScheme:]
+[WebView(WebPrivate) _generatedMIMETypeForURLScheme:]
+[WebView registerViewClass:representationClass:forMIMEType:]
+[WebFrameView(WebInternal) _viewTypesAllowImageTypeOmission:]
+[WebHTMLView initialize]
+[WebHTMLView(WebPrivate) _insertablePasteboardTypes]
+[WebHTMLView(WebPrivate) _selectionPasteboardTypes]
+[WebHTMLView(WebPrivate) supportedNonImageMIMETypes]
+[WebHTMLRepresentation supportedNonImageMIMETypes]
__Z11stringArrayRKN3WTF7HashSetIN7WebCore6StringENS1_10StringHashENS_10HashTraitsIS2_EEEE
+[WebPDFView supportedMIMETypes]
+[WebPDFRepresentation supportedMIMETypes]
+[WebPDFRepresentation postScriptMIMETypes]
+[WebDataSource(WebInternal) _repTypesAllowImageTypeOmission:]
+[WebView registerURLSchemeAsLocal:]
-[WebIconDatabase retainIconForURL:]
-[WebIconDatabase(WebInternal) _isEnabled]
_WebLocalizedString
-[WebView initWithFrame:frameName:groupName:]
+[WebViewPrivate initialize]
-[WebViewPrivate init]
-[WebView _commonInitializationWithFrameName:groupName:]
-[WebPreferences(WebPrivate) willAddToWebView]
-[WebFrameView initWithFrame:]
_InitWebCoreSystemInterface
+[WebViewFactory createSharedFactory]
+[WebKeyGenerator createSharedGenerator]
_WKDisableCGDeferredUpdates
-[WebFrameViewPrivate init]
-[WebClipView initWithFrame:]
_WebKitInitializeLoggingChannelsIfNecessary
_initializeLogChannel
+[WebHistoryItem initialize]
+[WebHistoryItem(WebInternal) initWindowWatcherIfNecessary]
__Z36WebKitInitializeDatabasesIfNecessaryv
__ZN24WebDatabaseTrackerClient30sharedWebDatabaseTrackerClientEv
__ZN24WebDatabaseTrackerClientC1Ev
__ZN15WebChromeClientC2EP7WebView
__ZN20WebContextMenuClientC2EP7WebView
__ZN15WebEditorClientC2EP7WebView
__ZN13WebDragClientC2EP7WebView
__ZN18WebInspectorClientC2EP7WebView
+[WebFrameBridge initialize]
-[WebFrameBridge initMainFrameWithPage:frameName:frameView:]
-[WebFrameBridge finishInitializingWithPage:frameName:frameView:ownerElement:]
__Z3kitPN7WebCore4PageE
-[WebFrame(WebInternal) _initWithWebFrameView:webView:bridge:]
-[WebFramePrivate setWebFrameView:]
-[WebFrameView(WebInternal) _setWebFrame:]
__ZN20WebFrameLoaderClientC2EP8WebFrame
__ZN20WebFrameLoaderClient20createDocumentLoaderERKN7WebCore15ResourceRequestERKNS0_14SubstituteDataE
__ZN20WebDocumentLoaderMacC2ERKN7WebCore15ResourceRequestERKNS0_14SubstituteDataE
-[WebDataSource(WebInternal) _initWithDocumentLoader:]
+[WebDataSourcePrivate initialize]
__Z10getWebViewP8WebFrame
__Z4coreP8WebFrame
__ZN20WebDocumentLoaderMac13setDataSourceEP13WebDataSourceP7WebView
__ZN20WebDocumentLoaderMac16retainDataSourceEv
-[WebView resourceLoadDelegate]
-[WebView downloadDelegate]
__ZN20WebDocumentLoaderMac13attachToFrameEv
__ZN20WebFrameLoaderClient22provisionalLoadStartedEv
-[WebFrameView(WebInternal) _scrollView]
__ZN20WebFrameLoaderClient25setMainFrameDocumentReadyEb
-[WebView(WebPendingPublic) setMainFrameDocumentReady:]
__ZN20WebFrameLoaderClient17setCopiesOnScrollEv
__ZN20WebFrameLoaderClient31prepareForDataSourceReplacementEv
-[WebFrame(WebInternal) _dataSource]
-[WebFrame(WebInternal) _frameLoader]
__ZN20WebFrameLoaderClient31transitionToCommittedForNewPageEv
__ZNK20WebDocumentLoaderMac10dataSourceEv
-[WebDataSource(WebPrivate) _responseMIMEType]
-[WebDataSource response]
-[WebDataSource(WebFileInternal) _MIMETypeOfResponse:]
+[WebFrameView(WebInternal) _viewClassForMIMEType:]
+[WebView(WebPrivate) _viewClass:andRepresentationClass:forMIMEType:]
-[NSDictionary(WebNSDictionaryExtras) _webkit_objectForMIMEType:]
+[WebHTMLView(WebPrivate) unsupportedTextMIMETypes]
-[WebFrameView(WebInternal) _makeDocumentViewForDataSource:]
-[WebDataSource representation]
-[WebHTMLView initWithFrame:]
+[WebHTMLViewPrivate initialize]
-[WebPluginController initWithDocumentView:]
-[WebFrameView(WebInternal) _setDocumentView:]
-[WebFrameView(WebInternal) _webView]
-[WebFrame webView]
__Z4coreP7WebView
-[WebView(WebPrivate) page]
-[WebDynamicScrollBarsView setSuppressLayout:]
-[WebHTMLView viewWillMoveToSuperview:]
-[WebHTMLView removeSuperviewObservers]
-[WebHTMLView setNeedsDisplay:]
-[WebHTMLView visibleRect]
-[WebClipView hasAdditionalClip]
-[WebHTMLView viewDidMoveToSuperview]
-[WebHTMLView(WebHTMLViewFileInternal) _updateTextSizeMultiplier]
-[WebHTMLView(WebHTMLViewFileInternal) _bridge]
-[WebHTMLView(WebHTMLViewFileInternal) _webView]
-[WebHTMLView addSuperviewObservers]
-[WebHTMLView isFlipped]
-[WebDynamicScrollBarsView reflectScrolledClipView:]
-[WebHTMLView respondsToSelector:]
-[WebFrameView(WebInternal) _marginHeight]
-[WebFrameView(WebInternal) _marginWidth]
-[WebFrame(WebInternal) _updateBackground]
-[WebView drawsBackground]
-[WebView(WebPrivate) backgroundColor]
-[WebFrameBridge webFrame]
-[WebFrame frameView]
-[WebFrameView documentView]
-[WebDynamicScrollBarsView horizontalScrollingMode]
-[WebDynamicScrollBarsView setScrollingMode:]
-[WebDynamicScrollBarsView setScrollingMode:andLock:]
-[WebHTMLView setDataSource:]
-[WebPluginController setDataSource:]
-[WebHTMLView addMouseMovedObserver]
-[WebHTMLView(WebHTMLViewFileInternal) _isTopHTMLView]
-[WebHTMLView(WebHTMLViewFileInternal) _topHTMLView]
-[WebDataSource(WebInternal) _webView]
-[WebDataSource webFrame]
-[WebView mainFrame]
__Z3kitPN7WebCore5FrameE
-[WebView(WebPrivate) _dashboardBehavior:]
__ZN15WebEditorClient23clearUndoRedoOperationsEv
__ZN15WebChromeClient16setStatusbarTextERKN7WebCore6StringE
__Z14CallUIDelegateP7WebViewP13objc_selectorP11objc_object
__Z12CallDelegateP7WebViewP11objc_objectP13objc_selectorS2_
__ZN20WebFrameLoaderClient15finishedLoadingEPN7WebCore14DocumentLoaderE
-[WebDataSource(WebInternal) _finishedLoading]
__ZN20WebFrameLoaderClient18frameLoadCompletedEv
__ZN20WebFrameLoaderClient21forceLayoutForNonHTMLEv
-[WebDataSource(WebInternal) _isDocumentHTML]
+[WebView canShowMIMETypeAsHTML:]
+[WebFrameView(WebInternal) _canShowMIMETypeAsHTML:]
__ZNK20WebFrameLoaderClient17overrideMediaTypeEv
-[WebView mediaStyle]
-[WebView textSizeMultiplier]
-[WebView(AllWebViews) _addToAllWebViewsSet]
-[WebView setGroupName:]
-[WebView _registerDraggedTypes]
+[NSPasteboard(WebExtras) _web_dragTypesForURL]
+[WebView(WebPrivate) _scriptDebuggerEnabled]
-[WebView preferences]
-[WebIconDatabase(WebInternal) _resetCachedWebPreferences:]
+[WebView(WebFileInternal) _preferencesChangedNotification:]
-[WebPreferences cacheModel]
+[WebView(WebFileInternal) _didSetCacheModel]
+[WebView(WebFileInternal) _setCacheModel:]
_WKCopyFoundationCacheDirectory
_WebMemorySize
_initCapabilities
_WebVolumeFreeSize
-[WebView(WebPrivate) _preferencesChangedNotification:]
-[WebPreferences(WebPrivate) _useSiteSpecificSpoofing]
-[WebPreferences cursiveFontFamily]
-[WebPreferences _stringValueForKey:]
-[WebPreferences defaultFixedFontSize]
-[WebPreferences defaultFontSize]
-[WebPreferences defaultTextEncodingName]
-[WebPreferences fantasyFontFamily]
-[WebPreferences fixedFontFamily]
-[WebPreferences(WebPrivate) _forceFTPDirectoryListings]
-[WebPreferences(WebPrivate) _ftpDirectoryTemplatePath]
-[WebPreferences isJavaEnabled]
-[WebPreferences isJavaScriptEnabled]
-[WebPreferences javaScriptCanOpenWindowsAutomatically]
-[WebPreferences minimumFontSize]
-[WebPreferences minimumLogicalFontSize]
-[WebPreferences arePlugInsEnabled]
-[WebPreferences sansSerifFontFamily]
-[WebPreferences serifFontFamily]
-[WebPreferences standardFontFamily]
-[WebPreferences loadsImagesAutomatically]
-[WebPreferences shouldPrintBackgrounds]
-[WebPreferences(WebPrivate) textAreasAreResizable]
-[WebPreferences(WebPrivate) shrinksStandaloneImagesToFit]
-[WebPreferences(WebPrivate) editableLinkBehavior]
__Z4core26WebKitEditableLinkBehavior
-[WebPreferences(WebPrivate) isDOMPasteAllowed]
-[WebView(WebPrivate) usesPageCache]
-[WebPreferences usesPageCache]
-[WebPreferences(WebPrivate) showsURLsInToolTips]
-[WebPreferences(WebPrivate) developerExtrasEnabled]
-[WebPreferences(WebPrivate) authorAndUserStylesEnabled]
-[WebPreferences userStyleSheetEnabled]
-[WebView(WebPrivate) _needsAdobeFrameReloadingQuirk]
_WKAppVersionCheckLessThan
-[WebView(WebPrivate) _needsKeyboardEventDisambiguationQuirks]
-[WebView setMaintainsBackForwardList:]
-[WebView setUIDelegate:]
-[WebView backForwardList]
__Z3kitPN7WebCore15BackForwardListE
__Z16backForwardListsv
+[WebBackForwardList initialize]
-[WebBackForwardList(WebBackForwardListInternal) initWithBackForwardList:]
__Z4coreP18WebBackForwardList
__ZNK3WTF7HashMapIPN7WebCore15BackForwardListEP18WebBackForwardListNS_7PtrHashIS3_EENS_10HashTraitsIS3_EENS8_IS5_EEE3getERKS3_
__ZN3WTF9HashTableIiSt4pairIiiENS_18PairFirstExtractorIS2_EENS_7IntHashIiEENS_14PairHashTraitsINS_10HashTraitsIiEES9_EES9_E47removeAndInvalidateWithoutEntryConsistencyCheckEPS2_
-[WebBackForwardList setCapacity:]
-[WebView setFrameLoadDelegate:]
-[WebView(WebPrivate) _cacheFrameLoadDelegateImplementations]
-[WebView setPolicyDelegate:]
-[WebView(WebViewEditing) setEditingDelegate:]
-[WebView(WebViewEditing) registerForEditingDelegateNotification:selector:]
-[WebView setResourceLoadDelegate:]
-[WebView(WebPrivate) _cacheResourceLoadDelegateImplementations]
-[WebView setDownloadDelegate:]
-[WebView setApplicationNameForUserAgent:]
-[WebView setHostWindow:]
-[WebView(WebPrivate) _setFormDelegate:]
+[WebStringTruncator initialize]
+[WebStringTruncator centerTruncateString:toWidth:withFont:]
__Z14fontFromNSFontP6NSFont
_WKGetCGFontFromNSFont
_WKGetNSFontATSUFontId
_WKGetATSStyleGroup
_WKGetFontMetrics
_WKInitializeGlyphVector
_WKConvertCharToGlyphs
_WKGetGlyphVectorNumGlyphs
_WKGetGlyphVectorFirstRecord
_WKGetGlyphVectorRecordSize
_WKClearGlyphVector
_WKGetGlyphTransformedAdvances
-[WebIconDatabase defaultIconWithSize:]
-[WebFrameView setFrameSize:]
-[WebFrameView webFrame]
-[WebFrame provisionalDataSource]
-[WebFrame dataSource]
-[WebView viewWillMoveToWindow:]
_WKSetNSWindowShouldPostEventNotifications
-[WebHTMLView viewWillMoveToWindow:]
-[WebHTMLView removeMouseMovedObserverUnconditionally]
_WKMouseMovedNotification
-[WebHTMLView removeWindowObservers]
-[WebHTMLView(WebHTMLViewFileInternal) _cancelUpdateMouseoverTimer]
-[WebHTMLView(WebHTMLViewFileInternal) _cancelUpdateFocusedAndActiveStateTimer]
-[WebHTMLView(WebPrivate) _pluginController]
-[WebPluginController stopAllPlugins]
-[WebHTMLView viewDidMoveToWindow]
-[WebHTMLView(WebPrivate) _stopAutoscrollTimer]
-[WebHTMLView addWindowObservers]
-[WebHTMLView(WebPrivate) _frameOrBoundsChanged]
-[WebHTMLView setNeedsLayout:]
-[WebPluginController startAllPlugins]
-[WebIconDatabase iconForURL:withSize:]
-[WebIconDatabase iconForURL:withSize:cache:]
-[NSString(WebNSURLExtras) _webkit_isFileURL]
-[WebIconDatabase defaultIconForURL:withSize:]
-[WebView setNextKeyView:]
-[WebFrameView setNextKeyView:]
-[NSString(WebKitExtras) _webkit_hasCaseInsensitivePrefix:]
+[NSURL(WebNSURLExtras) _web_URLWithUserTypedString:]
+[NSURL(WebNSURLExtras) _web_URLWithUserTypedString:relativeToURL:]
-[NSString(WebKitExtras) _webkit_stringByTrimmingWhitespace]
__Z12mapHostNamesP8NSStringa
+[NSURL(WebNSURLExtras) _web_URLWithData:relativeToURL:]
-[NSURL(WebNSURLExtras) _webkit_canonicalize]
_WKNSURLProtocolClassForRequest
-[NSURL(WebNSURLExtras) _web_originalDataAsString]
+[NSURL(WebNSURLExtras) _web_URLWithDataAsString:]
+[NSURL(WebNSURLExtras) _web_URLWithDataAsString:relativeToURL:]
-[NSView(WebExtras) _web_superviewOfClass:]
-[WebFrame loadRequest:]
__ZN20WebFrameLoaderClient9userAgentERKN7WebCore4KURLE
-[WebView(WebViewInternal) _userAgentForURL:]
-[WebView(WebViewInternal) _userAgentWithApplicationName:andWebKitVersion:]
+[NSUserDefaults(WebNSUserDefaultsExtras) _webkit_preferredLanguageCode]
+[NSUserDefaults(WebNSUserDefaultsExtras) _webkit_ensureAndLockPreferredLanguageLock]
_makeLock
-[NSString(WebNSUserDefaultsPrivate) _webkit_HTTPStyleLanguageCode]
_WKCopyCFLocalizationPreferredName
+[NSUserDefaults(WebNSUserDefaultsExtras) _webkit_addDefaultsChangeObserver]
_addDefaultsChangeObserver
__ZN20WebFrameLoaderClient17cancelPolicyCheckEv
__ZN20WebFrameLoaderClient39dispatchDecidePolicyForNavigationActionEMN7WebCore11FrameLoaderEFvNS0_12PolicyActionEERKNS0_16NavigationActionERKNS0_15ResourceRequestE
-[WebView(WebPrivate) _policyDelegateForwarder]
+[WebDefaultPolicyDelegate sharedPolicyDelegate]
-[_WebSafeForwarder initWithTarget:defaultTarget:catchExceptions:]
__ZN20WebFrameLoaderClient19setUpPolicyListenerEMN7WebCore11FrameLoaderEFvNS0_12PolicyActionEE
+[WebFramePolicyListener initialize]
-[WebFramePolicyListener initWithWebCoreFrame:]
_WKSupportsMultipartXMixedReplace
__ZNK20WebFrameLoaderClient16actionDictionaryERKN7WebCore16NavigationActionE
-[_WebSafeForwarder methodSignatureForSelector:]
-[_WebSafeForwarder forwardInvocation:]
+[WebView(WebPrivate) _canHandleRequest:]
-[WebFramePolicyListener use]
-[WebFramePolicyListener receivedPolicyDecision:]
__ZN20WebFrameLoaderClient21receivedPolicyDecisonEN7WebCore12PolicyActionE
__ZNK20WebFrameLoaderClient16canHandleRequestERKN7WebCore15ResourceRequestE
__ZN15WebChromeClient30canRunBeforeUnloadConfirmPanelEv
-[WebView UIDelegate]
__ZN20WebFrameLoaderClient22clearArchivedResourcesEv
__ZN3WTF9HashTableIiSt4pairIiNS_9RetainPtrI11WebResourceEEENS_18PairFirstExtractorIS5_EENS_7IntHashIiEENS_14PairHashTraitsINS_10HashTraitsIiEENSB_IS4_EEEESC_E47removeAndInvalidateWithoutEntryConsistencyCheckEPS5_
__ZN20WebFrameLoaderClient27willChangeEstimatedProgressEv
-[WebView(WebPrivate) _willChangeValueForKey:]
-[WebView(WebPrivate) observationInfo]
__ZN20WebFrameLoaderClient31postProgressStartedNotificationEv
__ZN20WebFrameLoaderClient26didChangeEstimatedProgressEv
-[WebView(WebPrivate) _didChangeValueForKey:]
__ZN20WebFrameLoaderClient31dispatchDidStartProvisionalLoadEv
-[WebView(WebPrivate) _didStartProvisionalLoadForFrame:]
-[WebView(WebPrivate) _willChangeBackForwardKeys]
__Z42WebViewGetFrameLoadDelegateImplementationsP7WebView
__Z21CallFrameLoadDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS2_S0_
__Z12CallDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS0_S2_S0_
-[WebDataSource isLoading]
-[WebDataSource request]
-[NSURL(WebNSURLExtras) _web_hostString]
-[NSURL(WebNSURLExtras) _web_hostData]
-[NSURL(WebNSURLExtras) _web_dataForURLComponentType:]
-[NSURL(WebNSURLExtras) _web_schemeData]
-[NSData(WebNSDataExtras) _web_isCaseInsensitiveEqualToCString:]
-[NSString(WebNSURLExtras) _web_decodeHostName]
-[NSString(WebNSURLExtras) _web_mapHostNameWithRange:encode:makeString:]
-[WebDataSource unreachableURL]
-[NSString(WebKitExtras) _webkit_isCaseInsensitiveEqualToString:]
__ZN20WebFrameLoaderClient32assignIdentifierToInitialRequestEmPN7WebCore14DocumentLoaderERKNS0_15ResourceRequestE
__Z45WebViewGetResourceLoadDelegateImplementationsP7WebView
-[WebView(WebViewInternal) _addObject:forIdentifier:]
__ZN3WTF9HashTableImSt4pairImNS_9RetainPtrIP11objc_objectEEENS_18PairFirstExtractorIS6_EENS_7IntHashImEENS_14PairHashTraitsINS_10HashTraitsImEENSC_IS5_EEEESD_E3addImS5_NS_17HashMapTranslatorILb1ES6_NS_18PairBaseHashTraitsISD_SE_EESF_SA_EEEES1_INS_17HashTableIteratorImS6_S8_SA_SF_SD_EEbERKT_RKT0_
__ZN3WTF9HashTableImSt4pairImNS_9RetainPtrIP11objc_objectEEENS_18PairFirstExtractorIS6_EENS_7IntHashImEENS_14PairHashTraitsINS_10HashTraitsImEENSC_IS5_EEEESD_E47removeAndInvalidateWithoutEntryConsistencyCheckEPS6_
__ZN20WebFrameLoaderClient23dispatchWillSendRequestEPN7WebCore14DocumentLoaderEmRNS0_15ResourceRequestERKNS0_16ResourceResponseE
__ZN20WebDocumentLoaderMac17increaseLoadCountEm
__ZNK3WTF9HashTableImmNS_17IdentityExtractorImEENS_7IntHashImEENS_10HashTraitsImEES6_E8containsImNS_22IdentityHashTranslatorImmS4_EEEEbRKT_
__ZN3WTF7HashSetImNS_7IntHashImEENS_10HashTraitsImEEE3addERKm
__ZN3WTF9HashTableImmNS_17IdentityExtractorImEENS_7IntHashImEENS_10HashTraitsImEES6_E3addImmNS_17HashSetTranslatorILb1EmS6_S6_S4_EEEESt4pairINS_17HashTableIteratorImmS2_S4_S6_S6_EEbERKT_RKT0_
__ZN3WTF9HashTableImmNS_17IdentityExtractorImEENS_7IntHashImEENS_10HashTraitsImEES6_E6expandEv
-[WebView(WebViewInternal) _objectForIdentifier:]
__ZN3WTF7HashMapImNS_9RetainPtrIP11objc_objectEENS_7IntHashImEENS_10HashTraitsImEENS7_IS4_EEE3setERKmRKS4_
__ZN3WTF23HashTableRefCounterBaseILb1ENS_9HashTableIPN7WebCore10StringImplESt4pairIS4_iENS_18PairFirstExtractorIS6_EENS2_15CaseFoldingHashENS_14PairHashTraitsINS_10HashTraitsIS4_EENSB_IiEEEESC_EENS_18PairBaseHashTraitsINSB_INS2_6StringEEESI_EEE6refAllERSF_
__ZN3WTF9HashTableIPN7WebCore10StringImplESt4pairIS3_iENS_18PairFirstExtractorIS5_EENS1_15CaseFoldingHashENS_14PairHashTraitsINS_10HashTraitsIS3_EENSA_IiEEEESB_EC1ERKSE_
__ZNK20WebFrameLoaderClient32representationExistsForURLSchemeERKN7WebCore6StringE
+[WebView(WebPrivate) _representationExistsForURLScheme:]
_WKCreateNSURLConnectionDelegateProxy
-[WebFramePolicyListener dealloc]
-[WebFrameView isOpaque]
-[WebFrameView drawRect:]
-[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:]
-[WebHTMLView(WebPrivate) _setAsideSubviews]
-[WebHTMLView(WebPrivate) _restoreSubviews]
-[WebFrame(WebInternal) _viewWillMoveToHostWindow:]
-[WebHTMLView viewWillMoveToHostWindow:]
-[NSArray(WebHTMLView) _web_makePluginViewsPerformSelector:withObject:]
-[WebFrame(WebInternal) _viewDidMoveToHostWindow]
-[WebHTMLView viewDidMoveToHostWindow]
-[WebPreferences(WebPrivate) setRespectStandardStyleKeyEquivalents:]
-[WebPreferences _setBoolValue:forKey:]
-[WebPreferences setPrivateBrowsingEnabled:]
-[WebPreferences(WebPrivate) setDOMPasteAllowed:]
+[WebPreferences(WebPrivate) _setInitialDefaultTextEncodingToSystemEncoding]
+[WebPreferences(WebPrivate) _systemCFStringEncoding]
_WKGetWebDefaultCFStringEncoding
+[NSUserDefaults(WebNSUserDefaultsExtras) _webkit_defaultsDidChange]
-[WebHistory init]
+[WebHistoryPrivate initialize]
-[WebHistoryPrivate init]
-[WebHistory setHistoryAgeInDaysLimit:]
-[WebHistoryPrivate setHistoryAgeInDaysLimit:]
-[WebHistory setHistoryItemLimit:]
-[WebHistoryPrivate setHistoryItemLimit:]
-[WebHistory loadFromURL:error:]
-[WebHistoryPrivate loadFromURL:collectDiscardedItemsInto:error:]
-[WebHistoryPrivate _loadHistoryGutsFromURL:savedItemsCount:collectDiscardedItemsInto:error:]
-[WebHistoryPrivate historyItemLimit]
-[WebHistoryPrivate _ageLimitDate]
-[WebHistoryPrivate historyAgeInDaysLimit]
-[WebHistoryItem(WebInternal) initFromDictionaryRepresentation:]
-[NSDictionary(WebNSDictionaryExtras) _webkit_stringForKey:]
-[WebHistoryItem(WebInternal) initWithURLString:title:displayTitle:lastVisitedTimeInterval:]
-[WebHistoryItem(WebInternal) initWithWebCoreHistoryItem:]
__Z19historyItemWrappersv
__ZNK3WTF7HashMapIPN7WebCore11HistoryItemEP14WebHistoryItemNS_7PtrHashIS3_EENS_10HashTraitsIS3_EENS8_IS5_EEE3getERKS3_
-[NSDictionary(WebNSDictionaryExtras) _webkit_intForKey:]
-[NSDictionary(WebNSDictionaryExtras) _webkit_numberForKey:]
-[WebHistoryItem URLString]
-[WebHistoryItem lastVisitedTimeInterval]
-[WebHistoryPrivate addItem:]
-[WebHistoryPrivate _addItemToDateCaches:]
-[WebHistoryPrivate findKey:forDay:]
__Z29timeIntervalForBeginningOfDayd
__ZNK3WTF9HashTableIxSt4pairIxNS_9RetainPtrI14NSMutableArrayEEENS_18PairFirstExtractorIS5_EENS_7IntHashIyEENS_14PairHashTraitsINS_10HashTraitsIxEENSB_IS4_EEEESC_E8containsIxNS_22IdentityHashTranslatorIxS5_S9_EEEEbRKT_
__ZNK3WTF7HashMapIxNS_9RetainPtrI14NSMutableArrayEENS_7IntHashIyEENS_10HashTraitsIxEENS6_IS3_EEE3getERKx
__ZN3WTF9HashTableIxSt4pairIxNS_9RetainPtrI14NSMutableArrayEEENS_18PairFirstExtractorIS5_EENS_7IntHashIyEENS_14PairHashTraitsINS_10HashTraitsIxEENSB_IS4_EEEESC_E3addIxS4_NS_17HashMapTranslatorILb1ES5_NS_18PairBaseHashTraitsISC_SD_EESE_S9_EEEES1_INS_17HashTableIteratorIxS5_S7_S9_SE_SC_EEbERKT_RKT0_
__ZN3WTF9HashTableIxSt4pairIxNS_9RetainPtrI14NSMutableArrayEEENS_18PairFirstExtractorIS5_EENS_7IntHashIyEENS_14PairHashTraitsINS_10HashTraitsIxEENSB_IS4_EEEESC_E47removeAndInvalidateWithoutEntryConsistencyCheckEPS5_
-[WebHistoryPrivate insertItem:forDateKey:]
+[WebHistory setOptionalSharedHistory:]
-[_WebCoreHistoryProvider initWithHistory:]
+[WebIconDatabase allowDatabaseCleanup]
-[WebBackForwardList dealloc]
__ZN3WTF9HashTableIiSt4pairIiiENS_18PairFirstExtractorIS2_EENS_7IntHashIiEENS_14PairHashTraitsINS_10HashTraitsIiEES9_EES9_E4findIiNS_22IdentityHashTranslatorIiS2_S6_EEEENS_17HashTableIteratorIiS2_S4_S6_SA_S9_EERKT_
__ZN20WebFrameLoaderClient31dispatchDecidePolicyForMIMETypeEMN7WebCore11FrameLoaderEFvNS0_12PolicyActionEERKNS0_6StringERKNS0_15ResourceRequestE
+[WebView canShowMIMEType:]
__ZNK20WebFrameLoaderClient15canShowMIMETypeERKN7WebCore6StringE
__ZN20WebFrameLoaderClient26dispatchDidReceiveResponseEPN7WebCore14DocumentLoaderEmRKNS0_16ResourceResponseE
__ZN20WebFrameLoaderClient17dispatchWillCloseEv
__ZN20WebFrameLoaderClient18makeRepresentationEPN7WebCore14DocumentLoaderE
-[WebDataSource(WebInternal) _makeRepresentation]
+[WebDataSource(WebFileInternal) _representationClassForMIMEType:]
-[WebHTMLRepresentation init]
-[WebDataSource(WebFileInternal) _setRepresentation:]
-[WebHTMLRepresentation setDataSource:]
-[WebFrame(WebInternal) _bridge]
__ZN20WebDocumentLoaderMac15detachFromFrameEv
__ZN20WebDocumentLoaderMac17releaseDataSourceEv
__ZN20WebFrameLoaderClient34updateGlobalHistoryForStandardLoadERKN7WebCore4KURLE
+[WebHistory optionalSharedHistory]
-[WebHistory addItemForURL:]
-[WebHistoryItem(WebPrivate) initWithURL:title:]
-[WebHistoryItem initWithURLString:title:lastVisitedTimeInterval:]
-[WebHistoryItem(WebPrivate) _setLastVisitedTimeInterval:]
-[WebHistory addItem:]
-[WebHistoryPrivate removeItemForURLString:]
-[WebHistoryPrivate _removeItemFromDateCaches:]
__ZN3WTF9HashTableIxSt4pairIxNS_9RetainPtrI14NSMutableArrayEEENS_18PairFirstExtractorIS5_EENS_7IntHashIyEENS_14PairHashTraitsINS_10HashTraitsIxEENSB_IS4_EEEESC_E4findIxNS_22IdentityHashTranslatorIxS5_S9_EEEENS_17HashTableIteratorIxS5_S7_S9_SE_SC_EERKT_
-[WebHistoryItem(WebInternal) _mergeAutoCompleteHints:]
-[WebHistoryItem dealloc]
-[WebHistory _sendNotification:entries:]
__Z26WKNotifyHistoryItemChangedv
-[WebDynamicScrollBarsView setScrollBarsSuppressed:repaintOnUnsuppress:]
-[WebDataSource dealloc]
-[WebDataSourcePrivate dealloc]
__ZN20WebDocumentLoaderMac16detachDataSourceEv
__ZNK20WebFrameLoaderClient11hasHTMLViewEv
__ZN20WebFrameLoaderClient13committedLoadEPN7WebCore14DocumentLoaderEPKci
-[WebDataSource(WebInternal) _receivedData:]
-[WebHTMLRepresentation receivedData:withDataSource:]
-[WebHTMLRepresentation _isDisplayingWebArchive]
__ZN20WebFrameLoaderClient21dispatchDidCommitLoadEv
-[WebView(WebPrivate) _didCommitLoadForFrame:]
-[WebDataSource pageTitle]
-[WebHTMLRepresentation title]
-[WebDataSource(WebInternal) _documentLoader]
-[WebBackForwardList currentItem]
__Z3kitPN7WebCore11HistoryItemE
-[WebHistoryItem(WebPrivate) _transientPropertyForKey:]
-[WebFrameView becomeFirstResponder]
-[WebHTMLView acceptsFirstResponder]
-[WebHTMLView becomeFirstResponder]
-[WebView(WebPrivate) _isPerformingProgrammaticFocus]
-[WebHTMLView(WebPrivate) _updateFocusedAndActiveState]
-[WebHTMLView(WebInternal) _frame]
-[WebHTMLView(WebInternal) _updateFontPanel]
-[WebHTMLView(WebPrivate) _canEdit]
-[WebHTMLView _arrowKeyDownEventSelectorIfPreprocessing]
-[NSURL(WebNSURLExtras) _web_userVisibleString]
-[NSURL(WebNSURLExtras) _web_originalData]
__Z10isHexDigitc
__Z13hexDigitValuec
__ZN20WebFrameLoaderClient15willChangeTitleEPN7WebCore14DocumentLoaderE
__ZN20WebFrameLoaderClient14didChangeTitleEPN7WebCore14DocumentLoaderE
__ZN20WebFrameLoaderClient8setTitleERKN7WebCore6StringERKNS0_4KURLE
-[WebHistory itemForURL:]
-[WebHistoryPrivate itemForURL:]
-[WebHistoryPrivate itemForURLString:]
-[WebHistoryItem(WebInternal) setTitle:]
__ZN20WebFrameLoaderClient23dispatchDidReceiveTitleERKN7WebCore6StringE
__Z21CallFrameLoadDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS2_S0_S0_
__ZN20WebFrameLoaderClient22dispatchDidFailLoadingEPN7WebCore14DocumentLoaderEmRKNS0_13ResourceErrorE
__ZN20WebFrameLoaderClient29dispatchDidHandleOnloadEventsEv
-[WebDynamicScrollBarsView verticalScrollingMode]
-[WebDynamicScrollBarsView setVerticalScrollingMode:]
-[WebDynamicScrollBarsView setVerticalScrollingMode:andLock:]
-[WebDynamicScrollBarsView updateScrollers]
-[WebDynamicScrollBarsView setHorizontalScrollingMode:]
-[WebDynamicScrollBarsView setHorizontalScrollingMode:andLock:]
__ZN15WebEditorClient10isEditableEv
-[WebHTMLView layout]
-[WebHTMLView layoutToMinimumPageWidth:maximumPageWidth:adjustingViewSize:]
-[WebHTMLView reapplyStyles]
-[WebDataSource(WebInternal) _bridge]
__ZN20WebFrameLoaderClient22dispatchDidFirstLayoutEv
__ZN20WebFrameLoaderClient21dispatchDidFinishLoadEv
-[WebView(WebPrivate) _didFinishLoadForFrame:]
-[WebView(WebPrivate) _didChangeBackForwardKeys]
-[WebFrame DOMDocument]
__Z3kitPN7WebCore8DocumentE
__ZN20WebFrameLoaderClient32postProgressFinishedNotificationEv
-[WebHTMLView(WebPrivate) viewWillDraw]
-[WebHTMLView(WebInternal) _web_layoutIfNeededRecursive]
-[WebHTMLView(WebInternal) _layoutIfNeeded]
-[NSView(WebHTMLViewFileInternal) _web_addDescendantWebHTMLViewsToArray:]
-[WebHTMLView isOpaque]
-[WebHTMLView drawRect:]
-[WebHTMLView drawSingleRect:]
-[WebClipView setAdditionalClip:]
-[WebHTMLView(WebPrivate) _transparentBackground]
-[WebHistoryItem originalURLString]
-[WebFrame(WebPrivate) _isFrameSet]
-[WebHTMLView(WebDocumentPrivateProtocols) string]
-[WebHTMLView(WebHTMLViewFileInternal) _documentRange]
-[DOMDocument(WebDOMDocumentOperationsPrivate) _documentRange]
-[DOMDocument(WebDOMDocumentOperationsPrivate) _createRangeWithNode:]
-[WebHTMLView _windowChangedKeyState]
-[WebHTMLView updateCell:]
-[WebHTMLView windowDidBecomeKey:]
-[WebHTMLView(WebNSTextInputSupport) inputContext]
-[WebHTMLView(WebNSTextInputSupport) validAttributesForMarkedText]
__Z9setCursorP8NSWindowP13objc_selector8_NSPoint
-[NSWindow(BorderViewAccess) _web_borderView]
-[WebHTMLView nextResponder]
-[WebHTMLView mouseMovedNotification:]
-[NSView(WebExtras) _web_dragShouldBeginFromMouseDown:withExpiration:xHysteresis:yHysteresis:]
-[NSString(WebNSURLExtras) _webkit_scriptIfJavaScriptURL]
-[NSString(WebNSURLExtras) _webkit_isJavaScriptURL]
__ZNK20WebFrameLoaderClient12canCachePageEv
__ZN20WebFrameLoaderClient19windowObjectClearedEv
-[WebFrameBridge windowObjectCleared]
-[WebView(WebPendingPublic) scriptDebugDelegate]
__ZN20WebFrameLoaderClient28savePlatformDataToCachedPageEPN7WebCore10CachedPageE
-[WebHistoryItem hash]
__ZNK20WebFrameLoaderClient25didPerformFirstNavigationEv
-[WebPreferences(WebPrivate) automaticallyDetectsCacheModel]
__ZN20WebFrameLoaderClient19saveViewStateToItemEPN7WebCore11HistoryItemE
-[WebHTMLView resignFirstResponder]
-[WebHTMLView maintainsInactiveSelection]
-[WebView(WebViewEditing) maintainsInactiveSelection]
-[WebHTMLView(WebDocumentPrivateProtocols) deselectAll]
-[WebHTMLView clearFocus]
__ZNK20WebFrameLoaderClient17willCacheResponseEPN7WebCore14DocumentLoaderEmP19NSCachedURLResponse
__ZN21WebIconDatabaseClient28dispatchDidAddIconForPageURLERKN7WebCore6StringE
-[WebIconDatabase(WebInternal) _sendNotificationForURL:]
-[NSNotificationCenter(WebNSNotificationCenterExtras) postNotificationOnMainThreadWithName:object:userInfo:]
-[NSNotificationCenter(WebNSNotificationCenterExtras) postNotificationOnMainThreadWithName:object:userInfo:waitUntilDone:]
__ZN20WebFrameLoaderClient27registerForIconNotificationEb
-[WebView(WebViewInternal) _registerForIconNotification:]
-[WebBasePluginPackage isNativeLibraryData:]
-[WebBasePluginPackage getPluginInfoFromPLists]
-[WebNetscapePluginPackage stringForStringListID:andIndex:]
+[NSString(WebKitExtras) _web_encodingForResource:]
-[WebNetscapePluginPackage closeResourceFile:]
-[WebBasePluginPackage pListForPath:createFile:]
-[WebBasePluginPackage load]
-[WebPluginDatabase(Internal) _addPlugin:]
-[WebBasePluginPackage path]
-[WebBasePluginPackage wasAddedToPluginDatabase:]
-[WebBasePluginPackage MIMETypeEnumerator]
-[WebPluginDatabase pluginForMIMEType:]
-[WebPluginDatabase pluginForKey:withEnumeratorSelector:]
-[WebNetscapePluginPackage executableType]
_checkCandidate
-[WebBasePluginPackage isQuickTimePlugIn]
-[WebBasePluginPackage bundle]
-[WebBasePluginPackage isJavaPlugIn]
+[WebHTMLView(WebPrivate) supportedImageMIMETypes]
+[WebHTMLRepresentation supportedImageMIMETypes]
__ZN3WTF7HashSetIN7WebCore6StringENS1_10StringHashENS_10HashTraitsIS2_EEE3addERKS2_
__ZN3WTF9HashTableIPN7WebCore10StringImplES3_NS_17IdentityExtractorIS3_EENS1_10StringHashENS_10HashTraitsIS3_EES8_E3addINS1_6StringESB_NS_17HashSetTranslatorILb0ESB_NS7_ISB_EES8_S6_EEEESt4pairINS_17HashTableIteratorIS3_S3_S5_S6_S8_S8_EEbERKT_RKT0_
__ZN3WTF9HashTableIPN7WebCore10StringImplES3_NS_17IdentityExtractorIS3_EENS1_10StringHashENS_10HashTraitsIS3_EES8_E6expandEv
__ZN3WTF9HashTableIPN7WebCore10StringImplES3_NS_17IdentityExtractorIS3_EENS1_10StringHashENS_10HashTraitsIS3_EES8_E4findIS3_NS_22IdentityHashTranslatorIS3_S3_S6_EEEENS_17HashTableIteratorIS3_S3_S5_S6_S8_S8_EERKT_
-[WebPluginDatabase plugins]
-[WebBasePluginPackage name]
-[WebBasePluginPackage pluginDescription]
-[WebBasePluginPackage extensionsForMIMEType:]
-[WebBasePluginPackage descriptionForMIMEType:]
-[WebView estimatedProgress]
_WKSetNSURLRequestShouldContentSniff
-[WebHistoryItem isEqual:]
__ZN20WebFrameLoaderClient17objectContentTypeERKN7WebCore4KURLERKNS0_6StringE
-[WebFrameBridge determineObjectFromMIMEType:URL:]
-[WebFrameBridge webView]
-[WebView _pluginForMIMEType:]
__ZN20WebFrameLoaderClient12createPluginERKN7WebCore7IntSizeEPNS0_7ElementERKNS0_4KURLERKN3WTF6VectorINS0_6StringELm0EEESE_RKSB_b
__Z7nsArrayRKN3WTF6VectorIN7WebCore6StringELm0EEE
-[WebFrameBridge viewForPluginWithFrame:URL:attributeNames:attributeValues:MIMEType:DOMElement:loadManually:]
+[WebBaseNetscapePluginView initialize]
_WKSendUserChangeNotifications
-[WebBaseNetscapePluginView initWithFrame:pluginPackage:URL:baseURL:MIMEType:attributeKeys:attributeValues:loadManually:DOMElement:]
-[WebNetscapePluginPackage load]
-[WebNetscapePluginPackage _applyDjVuWorkaround]
-[WebBaseNetscapePluginView setPluginPackage:]
-[WebNetscapePluginPackage NPP_New]
-[WebNetscapePluginPackage NPP_Destroy]
-[WebNetscapePluginPackage NPP_SetWindow]
-[WebNetscapePluginPackage NPP_NewStream]
-[WebNetscapePluginPackage NPP_WriteReady]
-[WebNetscapePluginPackage NPP_Write]
-[WebNetscapePluginPackage NPP_StreamAsFile]
-[WebNetscapePluginPackage NPP_DestroyStream]
-[WebNetscapePluginPackage NPP_HandleEvent]
-[WebNetscapePluginPackage NPP_URLNotify]
-[WebNetscapePluginPackage NPP_GetValue]
-[WebNetscapePluginPackage NPP_SetValue]
-[WebNetscapePluginPackage NPP_Print]
-[WebBaseNetscapePluginView setMIMEType:]
-[WebBaseNetscapePluginView setBaseURL:]
-[WebBaseNetscapePluginView setAttributeKeys:andValues:]
-[WebBaseNetscapePluginView setMode:]
-[WebHTMLView addSubview:]
-[WebBaseNetscapePluginView viewWillMoveToSuperview:]
-[WebBaseNetscapePluginView visibleRect]
-[WebBaseNetscapePluginView isFlipped]
-[WebBaseNetscapePluginView viewWillMoveToWindow:]
-[WebBaseNetscapePluginView tellQuickTimeToChill]
-[WebBaseNetscapePluginView removeTrackingRect]
-[WebBaseNetscapePluginView removeWindowObservers]
-[WebBaseNetscapePluginView setHasFocus:]
-[WebBaseNetscapePluginView viewDidMoveToWindow]
-[WebBaseNetscapePluginView resetTrackingRect]
-[WebBaseNetscapePluginView start]
-[WebBaseNetscapePluginView canStart]
-[WebBaseNetscapePluginView webView]
-[WebBaseNetscapePluginView webFrame]
-[WebBaseNetscapePluginView dataSource]
__Z4coreP10DOMElement
-[WebNetscapePluginPackage open]
-[WebBaseNetscapePluginView(Internal) _createPlugin]
+[WebBaseNetscapePluginView setCurrentPluginView:]
_NPN_UserAgent
_pluginViewForInstance
+[WebBaseNetscapePluginView currentPluginView]
-[WebBaseNetscapePluginView(WebNPPCallbacks) userAgent]
-[WebView userAgentForURL:]
_NPN_GetValue
-[WebBaseNetscapePluginView(WebNPPCallbacks) getVariable:value:]
_NPN_SetValue
-[WebBaseNetscapePluginView(WebNPPCallbacks) setVariable:value:]
_NPN_InvalidateRect
-[WebBaseNetscapePluginView(WebNPPCallbacks) invalidateRect:]
-[WebBaseNetscapePluginView updateAndSetWindow]
-[WebBaseNetscapePluginView saveAndSetNewPortState]
-[WebBaseNetscapePluginView saveAndSetNewPortStateForUpdate:]
-[WebBaseNetscapePluginView currentWindow]
-[WebBaseNetscapePluginView superviewsHaveSuperviews]
-[WebBaseNetscapePluginView(WebNPPCallbacks) isOpaque]
__ZN3WTF6VectorI6CGRectLm16EE6resizeEm
-[WebBaseNetscapePluginView setWindowIfNecessary]
-[WebBaseNetscapePluginView isNewWindowEqualToOldWindow]
-[WebBaseNetscapePluginView willCallPlugInFunction]
-[WebBaseNetscapePluginView didCallPlugInFunction]
-[WebBaseNetscapePluginView restorePortState:]
-[WebBaseNetscapePluginView addWindowObservers]
-[WebBaseNetscapePluginView sendActivateEvent:]
-[WebBaseNetscapePluginView getCarbonEvent:]
+[WebBaseNetscapePluginView getCarbonEvent:]
-[WebBaseNetscapePluginView sendEvent:]
_WKSetNSURLConnectionDefersCallbacks
__ZN20WebFrameLoaderClient16setDefersLoadingEb
__ZNK20WebFrameLoaderClient34deliverArchivedResourcesAfterDelayEv
-[WebBaseNetscapePluginView restartNullEvents]
-[WebBaseNetscapePluginView didStart]
-[NSURL(WebNSURLExtras) _web_isEmpty]
-[NSMutableURLRequest(WebNSURLRequestExtras) _web_setHTTPReferrer:]
-[WebBaseNetscapePluginView(WebNPPCallbacks) loadRequest:inTarget:withNotifyData:sendNotification:]
-[NSURL(WebNSURLExtras) _webkit_scriptIfJavaScriptURL]
+[WebBaseNetscapePluginStream initialize]
+[WebNetscapePluginStream initialize]
-[WebNetscapePluginStream initWithRequest:plugin:notifyData:sendNotification:]
-[WebBaseNetscapePluginStream initWithRequestURL:plugin:notifyData:sendNotification:]
-[WebBaseNetscapePluginStream setRequestURL:]
-[WebBaseNetscapePluginStream setPlugin:]
-[WebBaseNetscapePluginView pluginPackage]
__Z7streamsv
__ZN3WTF7HashMapIP9_NPStreamP4_NPPNS_7PtrHashIS2_EENS_10HashTraitsIS2_EENS7_IS4_EEE3addERKS2_RKS4_
__ZN3WTF9HashTableIiSt4pairIiiENS_18PairFirstExtractorIS2_EENS_7IntHashIiEENS_14PairHashTraitsINS_10HashTraitsIiEES9_EES9_E3addIPN7WebCore11HistoryItemEP14WebHistoryItemNS_17HashMapTranslatorILb1ES1_ISF_SH_ENS_18PairBaseHashTraitsINS8_ISF_EENS8_ISH_EEEESA_NS_7PtrHashISF_EEEEEES1_INS_17HashTableIteratorIiS2_S4_S6_SA_S9_EEbERKT_RKT0_
-[WebNetscapePluginStream start]
-[WebBaseNetscapePluginView stopNullEvents]
+[WebPluginController isPlugInView:]
-[WebBaseNetscapePluginView renewGState]
-[WebBaseNetscapePluginView(Internal) _viewHasMoved]
-[WebFrameBridge firstResponder]
__ZN15WebEditorClient19setInputMethodStateEb
__ZN15WebEditorClient32isContinuousSpellCheckingEnabledEv
-[WebView(WebViewEditing) isContinuousSpellCheckingEnabled]
-[WebView(WebFileInternal) _continuousCheckingAllowed]
__ZN15WebEditorClient24isGrammarCheckingEnabledEv
-[WebView(WebViewGrammarChecking) isGrammarCheckingEnabled]
__ZN15WebEditorClient25respondToChangedSelectionEv
-[WebView selectedFrame]
-[WebView(WebFileInternal) _focusedFrame]
__Z19containingFrameViewP6NSView
-[WebHTMLView(WebInternal) _selectionChanged]
-[WebHTMLView(WebNSTextInputSupport) _updateSelectionForInputManager]
-[WebClipView additionalClip]
-[WebBaseNetscapePluginView drawRect:]
-[WebBaseNetscapePluginView sendUpdateEvent]
__ZN3WTF6VectorI6CGRectLm16EE6shrinkEm
__ZN20WebFrameLoaderClient22dispatchDidReceiveIconEv
-[WebBaseNetscapePluginView sendNullEvent]
__ZN35WebNetscapePlugInStreamLoaderClient18didReceiveResponseEPN7WebCore26NetscapePlugInStreamLoaderERKNS0_16ResourceResponseE
-[WebBaseNetscapePluginStream startStreamWithResponse:]
_WKGetNSURLResponseLastModifiedDate
-[WebBaseNetscapePluginStream startStreamResponseURL:expectedContentLength:lastModifiedDate:MIMEType:headers:]
-[WebBaseNetscapePluginStream setResponseURL:]
-[WebBaseNetscapePluginStream setMIMEType:]
-[NSURL(WebNSURLExtras) _web_URLCString]
__ZN35WebNetscapePlugInStreamLoaderClient14didReceiveDataEPN7WebCore26NetscapePlugInStreamLoaderEPKci
-[WebBaseNetscapePluginStream receivedData:]
-[WebBaseNetscapePluginStream _deliverData]
__ZN35WebNetscapePlugInStreamLoaderClient16didFinishLoadingEPN7WebCore26NetscapePlugInStreamLoaderE
-[WebBaseNetscapePluginStream finishedLoading]
-[WebBaseNetscapePluginStream _destroyStreamWithReason:]
-[WebBaseNetscapePluginStream _destroyStream]
-[WebBaseNetscapePluginView disconnectStream:]
-[WebNetscapePluginStream dealloc]
__ZN35WebNetscapePlugInStreamLoaderClientD1Ev
-[WebBaseNetscapePluginStream dealloc]
__ZN20WebFrameLoaderClient14cancelledErrorERKN7WebCore15ResourceRequestE
+[NSError(WebKitExtras) _webKitErrorWithDomain:code:URL:]
+[NSError(WebKitExtras) _registerWebKitErrors]
_registerErrors
+[NSError(WebKitExtras) _webkit_addErrorsWithCodesAndDescriptions:inDomain:]
+[NSError(WebKitExtras) _webkit_errorWithDomain:code:URL:]
-[NSError(WebKitExtras) _webkit_initWithDomain:code:URL:]
__ZN20WebFrameLoaderClient20setMainDocumentErrorEPN7WebCore14DocumentLoaderERKNS0_13ResourceErrorE
-[WebDataSource(WebInternal) _setMainDocumentError:]
__ZN20WebFrameLoaderClient24cancelPendingArchiveLoadEPN7WebCore14ResourceLoaderE
__ZN15WebEditorClient22textFieldDidEndEditingEPN7WebCore7ElementE
__Z16CallFormDelegateP7WebViewP13objc_selectorP11objc_objectS4_
-[WebView hostWindow]
-[WebBaseNetscapePluginView stop]
-[WebBaseNetscapePluginView(Internal) _destroyPlugin]
-[WebNetscapePluginPackage close]
-[WebBaseNetscapePluginView removeKeyEventHandler]
-[WebHTMLView willRemoveSubview:]
-[WebBaseNetscapePluginView dealloc]
-[WebBaseNetscapePluginView fini]
-[WebHTMLView dealloc]
-[WebHTMLView(WebPrivate) close]
-[WebHTMLView(WebPrivate) _clearLastHitViewIfSelf]
-[WebPluginController destroyAllPlugins]
-[WebPluginController _cancelOutstandingChecks]
-[WebHTMLViewPrivate clear]
-[WebPluginController dealloc]
-[WebHTMLRepresentation dealloc]
-[WebHTMLRepresentationPrivate dealloc]
-[WebHTMLViewPrivate dealloc]
__ZN20WebFrameLoaderClient11createFrameERKN7WebCore4KURLERKNS0_6StringEPNS0_21HTMLFrameOwnerElementES6_bii
-[WebFrameBridge createChildFrameNamed:withURL:referrer:ownerElement:allowsScrolling:marginWidth:marginHeight:]
-[WebFrameView setAllowsScrolling:]
-[WebDynamicScrollBarsView setAllowsScrolling:]
-[WebFrameView(WebInternal) _setMarginWidth:]
-[WebFrameView(WebInternal) _setMarginHeight:]
-[WebFrameBridge initSubframeWithOwnerElement:frameName:frameView:]
-[WebFrame(WebInternal) _addChild:]
-[WebFrame(WebInternal) _loadURL:referrer:intoChild:]
-[WebFrame name]
-[WebDataSource(WebInternal) _popSubframeArchiveWithName:]
-[WebFrame parentFrame]
_WKGetFontInLanguageForRange
_WKDrawFocusRing
__Z41_updateFocusedAndActiveStateTimerCallbackP16__CFRunLoopTimerPv
-[WebHTMLView(WebHTMLViewFileInternal) _frameView]
-[WebHTMLView keyDown:]
__ZN15WebEditorClient24handleInputMethodKeydownEPN7WebCore13KeyboardEventE
-[WebHTMLView(WebInternal) _interceptEditingKeyEvent:shouldSaveCommand:]
-[WebHTMLView(WebNSTextInputSupport) hasMarkedText]
-[WebHTMLView(WebNSTextInputSupport) insertText:]
__ZN3WTF6VectorIN7WebCore15KeypressCommandELm0EE14expandCapacityEmPKS2_
__ZN3WTF6VectorIN7WebCore15KeypressCommandELm0EE14expandCapacityEm
__ZN3WTF6VectorIN7WebCore15KeypressCommandELm0EE15reserveCapacityEm
__ZN15WebEditorClient27doTextFieldCommandFromEventEPN7WebCore7ElementEPNS0_13KeyboardEventE
__ZN15WebEditorClient19handleKeyboardEventEPN7WebCore13KeyboardEventE
-[WebHTMLView coreCommandBySelector:]
__ZN15WebEditorClient16shouldInsertTextEN7WebCore6StringEPNS0_5RangeENS0_18EditorInsertActionE
-[WebView(WebPrivate) _editingDelegateForwarder]
+[WebDefaultEditingDelegate sharedEditingDelegate]
__Z3kitN7WebCore18EditorInsertActionE
__Z3kitPN7WebCore5RangeE
-[WebDefaultEditingDelegate webView:shouldInsertText:replacingDOMRange:givenAction:]
__ZN15WebEditorClient24textFieldDidBeginEditingEPN7WebCore7ElementE
-[WebHTMLRepresentation formForElement:]
-[WebHTMLRepresentation controlsInForm:]
-[WebHTMLRepresentation elementIsPassword:]
-[WebHTMLRepresentation elementDoesAutoComplete:]
__ZN15WebEditorClient24textDidChangeInTextFieldEPN7WebCore7ElementE
-[DOMDocument(WebDOMDocumentOperations) webFrame]
-[DOMNode(WebDOMNodeOperations) _bridge]
__ZN15WebEditorClient25shouldChangeSelectedRangeEPN7WebCore5RangeES2_NS0_9EAffinityEb
-[WebView(WebViewEditing) _shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]
-[WebDefaultEditingDelegate webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]
__ZN15WebEditorClient22registerCommandForUndoEN3WTF10PassRefPtrIN7WebCore11EditCommandEEE
__ZN15WebEditorClient28registerCommandForUndoOrRedoEN3WTF10PassRefPtrIN7WebCore11EditCommandEEEb
-[WebView(WebViewEditing) undoManager]
+[WebEditCommand initialize]
+[WebEditCommand commandWithEditCommand:]
-[WebEditCommand initWithEditCommand:]
__ZN15WebEditorClient24respondToChangedContentsEv
-[WebHTMLView keyUp:]
__ZN15WebEditorClient21checkSpellingOfStringEPKtiPiS2_
__ZN15WebEditorClient23spellCheckerDocumentTagEv
-[WebView(WebViewEditing) spellCheckerDocumentTag]
-[WebHTMLRepresentation matchLabels:againstElement:]
-[WebHTMLRepresentation searchForLabels:beforeElement:]
-[WebHTMLView(WebNSTextInputSupport) doCommandBySelector:]
-[WebDefaultEditingDelegate webView:doCommandBySelector:]
__ZN15WebEditorClient17shouldDeleteRangeEPN7WebCore5RangeE
-[WebDefaultEditingDelegate webView:shouldDeleteDOMRange:]
__ZN15WebEditorClient28textWillBeDeletedInTextFieldEPN7WebCore7ElementE
__Z32CallFormDelegateReturningBooleanaP7WebViewP13objc_selectorP11objc_objectS2_S4_
-[WebHistoryItem title]
+[WebHTMLView(WebPrivate) _postFlagsChangedEvent:]
-[WebHTMLView flagsChanged:]
-[WebHistory saveToURL:error:]
-[WebHistoryPrivate saveToURL:error:]
-[WebHistoryPrivate _saveHistoryGuts:URL:error:]
-[WebHistoryPrivate arrayRepresentation]
__ZN3WTF6VectorIiLm0EE15reserveCapacityEm
__ZSt16__introsort_loopIPiiEvT_S1_T0_
__ZSt22__final_insertion_sortIPiEvT_S1_
__ZSt16__insertion_sortIPiEvT_S1_
-[WebHistoryItem(WebPrivate) dictionaryRepresentation]
__ZN3WTF6VectorIiLm0EE6shrinkEm
_WKSetPatternPhaseInUserSpace
-[WebElementDictionary _domNode]
__Z3kitPN7WebCore4NodeE
__ZN20WebFrameLoaderClient22dispatchWillSubmitFormEMN7WebCore11FrameLoaderEFvNS0_12PolicyActionEEN3WTF10PassRefPtrINS0_9FormStateEEE
-[WebView(WebPrivate) _formDelegate]
__Z3kitPN7WebCore11HTMLElementE
__Z16CallFormDelegateP7WebViewP13objc_selectorP11objc_objectS4_S4_S4_S4_
-[WebHTMLRepresentation elementWithName:inForm:]
-[WebFramePolicyListener continue]
__ZN15WebChromeClient5focusEv
-[WebEditCommand dealloc]
-[WebFrame(WebPrivate) _isDescendantOfFrame:]
-[WebHTMLView(WebDocumentInternalProtocols) elementAtPoint:allowShadowContent:]
-[WebElementDictionary _webFrame]
-[WebElementDictionary _targetWebFrame]
-[NSURL(WebNSURLExtras) _webkit_URLByRemovingFragment]
-[WebHTMLView shouldDelayWindowOrderingForEvent:]
-[WebHTMLView(WebHTMLViewFileInternal) _hitViewForEvent:]
-[WebHTMLView _isSelectionEvent:]
-[WebElementDictionary _isSelected]
-[WebHTMLView mouseDown:]
-[WebHTMLView(WebHTMLViewFileInternal) _setMouseDownEvent:]
-[WebHTMLView mouseUp:]
__ZN20WebFrameLoaderClient33dispatchWillPerformClientRedirectERKN7WebCore4KURLEdd
__Z21CallFrameLoadDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS2_S0_dS0_S0_
__Z12CallDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS0_S2_S0_dS0_S0_
__ZN20WebFrameLoaderClient31dispatchDidCancelClientRedirectEv
+[WebStringTruncator centerTruncateString:toWidth:]
__Z15defaultMenuFontv
-[WebViewFactory pluginSupportsMIMEType:]
-[WebHTMLView(WebPrivate) addTrackingRect:owner:userData:assumeInside:]
-[WebHTMLView(WebPrivate) _sendToolTipMouseEntered]
-[WebHTMLView(WebPrivate) _sendToolTipMouseExited]
-[WebHTMLView(WebPrivate) removeTrackingRect:]
-[WebHTMLView mouseDragged:]
-[WebViewFactory bridgeForView:]
-[WebBaseNetscapePluginView createPluginScriptableObject]
-[WebBaseNetscapePluginView isStarted]
_NPN_MemFree
-[WebBaseNetscapePluginView mouseEntered:]
-[WebBaseNetscapePluginView getCarbonEvent:withEvent:]
_WKConvertNSEventToCarbonEvent
-[WebBaseNetscapePluginView modifiersForEvent:]
_NPN_GetURLNotify
-[WebBaseNetscapePluginView(WebNPPCallbacks) getURLNotify:target:notifyData:]
-[WebBaseNetscapePluginView(WebNPPCallbacks) requestWithURLCString:]
-[NSString(WebKitExtras) _web_stringByStrippingReturnCharacters]
-[WebBaseNetscapePluginView mouseExited:]
-[WebHTMLView scrollWheel:]
_WKGetWheelEventDeltas
-[WebClipView scrollWheel:]
-[WebDynamicScrollBarsView scrollWheel:]
-[WebDynamicScrollBarsView allowsVerticalScrolling]
-[WebHTMLView performKeyEquivalent:]
-[WebHTMLView _handleStyleKeyEquivalent:]
-[WebPreferences(WebPrivate) respectStandardStyleKeyEquivalents]
-[WebBaseNetscapePluginView acceptsFirstResponder]
-[WebFrameBridge makeFirstResponder:]
-[WebView(WebPrivate) _pushPerformingProgrammaticFocus]
-[WebBaseNetscapePluginView becomeFirstResponder]
-[WebBaseNetscapePluginView installKeyEventHandler]
-[WebView(WebPrivate) _popPerformingProgrammaticFocus]
-[WebBaseNetscapePluginView mouseDown:]
-[WebBaseNetscapePluginView mouseUp:]
-[WebBaseNetscapePluginView mouseDragged:]
-[WebBaseNetscapePluginView resignFirstResponder]
-[WebHTMLView(WebPrivate) _removeTrackingRects:count:]
-[WebHTMLView(WebPrivate) _addTrackingRect:owner:userData:assumeInside:useTrackingNum:]
__ZN20WebFrameLoaderClient19detachedFromParent2Ev
__ZN20WebFrameLoaderClient19detachedFromParent3Ev
-[WebFrameBridge close]
__ZN20WebFrameLoaderClient19detachedFromParent4Ev
-[WebFrameBridge dealloc]
-[WebFrameBridge fini]
__ZN20WebFrameLoaderClient20frameLoaderDestroyedEv
-[WebFrame dealloc]
-[WebFramePrivate dealloc]
-[WebFrameView dealloc]
-[WebFrameViewPrivate dealloc]
-[WebNetscapePluginStream stop]
-[WebBaseNetscapePluginStream cancelLoadAndDestroyStreamWithError:]
-[WebNetscapePluginStream cancelLoadWithError:]
__ZN35WebNetscapePlugInStreamLoaderClient7didFailEPN7WebCore26NetscapePlugInStreamLoaderERKNS0_13ResourceErrorE
-[WebBaseNetscapePluginStream destroyStreamWithError:]
+[WebBaseNetscapePluginStream reasonForError:]
_NPN_GetURL
-[WebBaseNetscapePluginView(WebNPPCallbacks) getURL:target:]
-[NSString(WebNSURLExtras) _webkit_stringByReplacingValidPercentEscapes]
-[WebFrame findFrameNamed:]
-[WebPluginRequest initWithRequest:frameName:notifyData:sendNotification:didStartFromUserGesture:]
-[WebBaseNetscapePluginView(WebNPPCallbacks) loadPluginRequest:]
-[WebPluginRequest request]
-[WebPluginRequest frameName]
-[WebBaseNetscapePluginView(WebNPPCallbacks) evaluateJavaScriptPluginRequest:]
-[WebPluginRequest isCurrentEventUserGesture]
-[WebPluginRequest sendNotification]
-[WebPluginRequest dealloc]
-[WebViewFactory defaultLanguageCode]
-[WebDynamicScrollBarsView autoforwardsScrollWheelEvents]
__ZN20WebFrameLoaderClient14shouldFallBackERKN7WebCore13ResourceErrorE
__ZN20WebFrameLoaderClient30dispatchDidFailProvisionalLoadERKN7WebCore13ResourceErrorE
-[WebView(WebPrivate) _didFailProvisionalLoadWithError:forFrame:]
-[WebHistoryItem alternateTitle]
-[WebHistoryItem setAlternateTitle:]
-[WebHTMLView(WebPrivate) view:stringForToolTip:point:userData:]
-[WebHTMLView windowDidResignKey:]
-[WebHTMLView removeMouseMovedObserver]
-[WebBaseNetscapePluginView windowResignedKey:]
-[WebBaseNetscapePluginView windowBecameKey:]
-[WebView(WebIBActions) goBack:]
-[WebView goBack]
__ZNK20WebFrameLoaderClient21shouldGoToHistoryItemEPN7WebCore11HistoryItemE
-[WebHistoryItem(WebPrivate) URL]
__ZN20WebFrameLoaderClient16restoreViewStateEv
-[WebWindowWatcher windowWillClose:]
-[WebHTMLView needsPanelToBecomeKey]
-[WebHTMLView acceptsFirstMouse:]
__ZN20WebFrameLoaderClient50dispatchDidReceiveServerRedirectForProvisionalLoadEv
__ZN15WebChromeClient19addMessageToConsoleERKN7WebCore6StringEjS3_
__ZN13WebDragClient28dragSourceActionMaskForPointERKN7WebCore8IntPointE
-[WebDefaultUIDelegate webView:dragSourceActionMaskForPoint:]
-[WebFrameBridge willPopupMenu:]
_WKPopupMenu
-[WebHTMLView _accessibilityParentForSubview:]
-[WebHTMLView accessibilityAttributeValue:]
-[WebClipView _focusRingVisibleRect]
-[WebFrameBridge window]
-[WebViewFactory accessibilityHandleFocusChanged]
_WKAccessibilityHandleFocusChanged
-[WebViewFactory unregisterUniqueIdForUIElement:]
_WKUnregisterUniqueIdForElement
__ZN25WebCachedPagePlatformData5clearEv
-[WebHTMLView(WebInternal) closeIfNotCurrentView]
_WKGetFontInLanguageForCharacter
__ZN20WebFrameLoaderClient35dispatchDidChangeLocationWithinPageEv
__ZN20WebFrameLoaderClient13didFinishLoadEv
-[WebView(WebPendingPublic) shouldClose]
-[WebView _windowWillClose:]
-[WebView shouldCloseWithWindow]
-[WebHTMLView windowWillClose:]
-[WebView(WebPrivate) _isClosed]
-[WebView close]
-[WebFrame childFrames]
-[WebView(WebPrivate) _clearUndoRedoOperations]
-[WebView(WebPrivate) _close]
-[WebView(AllWebViews) _removeFromAllWebViewsSet]
-[WebView(WebPendingPublic) setScriptDebugDelegate:]
-[WebView(WebPrivate) _detachScriptDebuggerFromAllFrames]
-[WebView removeDragCaret]
__ZN15WebEditorClient13pageDestroyedEv
__ZN18WebInspectorClient18inspectorDestroyedEv
__ZN20WebContextMenuClient20contextMenuDestroyedEv
__ZN13WebDragClient23dragControllerDestroyedEv
__ZN15WebChromeClient15chromeDestroyedEv
-[WebView preferencesIdentifier]
-[WebPreferences identifier]
+[WebPreferences(WebPrivate) _removeReferenceForIdentifier:]
-[WebPreferences(WebPrivate) didRemoveFromWebView]
+[WebView(WebFileInternal) _preferencesRemovedNotification:]
+[WebView(WebFileInternal) _cacheModel]
+[WebView(WebFileInternal) _maxCacheModelInAnyInstance]
-[WebView dealloc]
-[WebViewPrivate dealloc]
__ZN20WebFrameLoaderClient38dispatchDidLoadResourceFromMemoryCacheEPN7WebCore14DocumentLoaderERKNS0_15ResourceRequestERKNS0_16ResourceResponseEi
__Z24CallResourceLoadDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS2_S0_S0_S0_S0_
__Z12CallDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS0_S2_S0_S0_S0_S0_
-[WebViewFactory inputElementAltText]
__ZN20WebFrameLoaderClient35transitionToCommittedFromCachedPageEPN7WebCore10CachedPageE
__ZN20WebFrameLoaderClient11forceLayoutEv
-[WebHTMLView setNeedsToApplyStyles:]
_WKDrawBezeledTextArea
__ZN15WebEditorClient23textDidChangeInTextAreaEPN7WebCore7ElementE
-[WebPreferences setJavaScriptCanOpenWindowsAutomatically:]
-[NSMutableDictionary(WebNSDictionaryExtras) _webkit_setBool:forKey:]
__ZN20WebFrameLoaderClient28updateGlobalHistoryForReloadERKN7WebCore4KURLE
-[WebHistory setLastVisitedTimeInterval:forItem:]
-[WebHistoryPrivate setLastVisitedTimeInterval:forItem:]
-[WebDynamicScrollBarsView allowsHorizontalScrolling]
__ZN15WebChromeClient10windowRectEv
__ZN15WebChromeClient11scaleFactorEv
__ZN15WebChromeClient11canRunModalEv
__ZN20WebFrameLoaderClient19dispatchDidFailLoadERKN7WebCore13ResourceErrorE
-[WebView(WebPrivate) _didFailLoadWithError:forFrame:]
__ZN15WebChromeClient12createWindowEPN7WebCore5FrameERKNS0_16FrameLoadRequestERKNS0_14WindowFeaturesE
__Z14CallUIDelegateP7WebViewP13objc_selectorP11objc_objectS4_
__Z12CallDelegateP7WebViewP11objc_objectP13objc_selectorS2_S2_
-[WebBaseNetscapePluginView preferencesHaveChanged:]
__ZN15WebChromeClient18setToolbarsVisibleEb
-[WebView becomeFirstResponder]
-[WebFrameView acceptsFirstResponder]
__ZN15WebChromeClient19setStatusbarVisibleEb
__ZN15WebChromeClient20setScrollbarsVisibleEb
__ZN15WebChromeClient17setMenubarVisibleEb
__ZN15WebChromeClient12setResizableEb
__ZN15WebChromeClient8pageRectEv
__ZN15WebChromeClient13setWindowRectERKN7WebCore9FloatRectE
__ZN15WebChromeClient4showEv
-[WebFramePolicyListener invalidate]
__ZN20WebFrameLoaderClient29interruptForPolicyChangeErrorERKN7WebCore15ResourceRequestE
-[WebFramePolicyListener ignore]
+[NSObject(WebScripting) isKeyExcludedFromWebScript:]
-[WebIconDatabase iconURLForURL:]
-[WebHistoryItem(WebPrivate) RSSFeedReferrer]
-[WebView(WebIBActions) reload:]
-[WebFrame reload]
__ZN15WebChromeClient7unfocusEv
-[WebDefaultUIDelegate webViewUnfocus:]
__ZN15WebChromeClient15closeWindowSoonEv
-[WebView(WebPrivate) _closeWindow]
-[WebBaseNetscapePluginView windowWillClose:]
-[WebFrameBridge valueForKey:keys:values:]
-[NSError(WebKitExtras) _initWithPluginErrorCode:contentURL:pluginPageURL:pluginName:MIMEType:]
-[WebNullPluginView initWithFrame:error:DOMElement:]
-[WebNullPluginView viewDidMoveToWindow]
-[WebNullPluginView reportFailure]
-[WebFrameBridge getAppletInView:]
-[WebFrameBridge pollForAppletInView:]
-[WebNullPluginView dealloc]
__ZN20WebFrameLoaderClient21fileDoesNotExistErrorERKN7WebCore16ResourceResponseE
__ZN20WebFrameLoaderClient38dispatchDecidePolicyForNewWindowActionEMN7WebCore11FrameLoaderEFvNS0_12PolicyActionEERKNS0_16NavigationActionERKNS0_15ResourceRequestERKNS0_6StringE
__ZN20WebFrameLoaderClient18dispatchCreatePageEv
__ZN20WebFrameLoaderClient12dispatchShowEv
__ZN3WTF6VectorI6CGRectLm16EE14expandCapacityEm
__ZN3WTF6VectorI6CGRectLm16EE15reserveCapacityEm
-[WebViewFactory refreshPlugins:]
-[WebBackForwardList forwardItem]
-[WebBackForwardList backItem]
-[NSString(WebKitExtras) _web_drawAtPoint:font:textColor:]
_canUseFastRenderer
-[NSEvent(WebExtras) _web_isOptionTabKeyEvent]
-[NSString(WebNSURLExtras) _webkit_rangeOfURLScheme]
-[WebFrame loadAlternateHTMLString:baseURL:forUnreachableURL:]
-[WebFrame _loadHTMLString:baseURL:unreachableURL:]
-[WebFrame _loadData:MIMEType:textEncodingName:baseURL:unreachableURL:]
-[WebBaseNetscapePluginStream _pluginCancelledConnectionError]
-[WebPluginRequest notifyData]
__ZNK15WebChromeClient11tabsToLinksEv
-[WebPreferences tabsToLinks]
-[WebFrameBridge keyboardUIMode]
-[WebFrameBridge _retrieveKeyboardUIModeFromPreferences:]
-[WebFrameBridge _preferences]
_WKGetMIMETypeForExtension
-[WebView _pluginForExtension:]
-[WebPluginDatabase pluginForExtension:]
-[WebBasePluginPackage extensionEnumerator]
-[WebBasePluginPackage MIMETypeForExtension:]
-[WebDataSource(WebPrivate) _mainDocumentError]
-[WebHTMLView validateUserInterfaceItem:]
-[WebHTMLView validateUserInterfaceItemWithoutDelegate:]
__Z3kitN7WebCore8TriStateE
__Z30CallUIDelegateReturningBooleanaP7WebViewP13objc_selectorP11objc_objecta
__Z28CallDelegateReturningBooleanaP7WebViewP11objc_objectP13objc_selectorS2_a
-[WebFrame(WebPrivate) _isDisplayingStandaloneImage]
-[WebHTMLView(WebPrivate) _hasSelection]
-[WebHTMLView(WebPrivate) _isEditable]
-[WebView(WebIBActions) validateUserInterfaceItem:]
-[WebView(WebIBActions) validateUserInterfaceItemWithoutDelegate:]
-[WebHTMLView(WebInternal) isGrammarCheckingEnabled]
-[WebView(WebIBActions) canMakeTextLarger]
-[WebView(WebFileInternal) _performTextSizingSelector:withObject:onTrackingDocs:selForNonTrackingDocs:newScaleFactor:]
-[WebFrame(WebInternal) _documentViews]
-[WebHTMLView(WebTextSizing) _tracksCommonSizeFactor]
-[WebView(WebIBActions) canMakeTextStandardSize]
-[WebView(WebIBActions) canMakeTextSmaller]
-[WebHTMLRepresentation canProvideDocumentSource]
-[WebView supportsTextEncoding]
-[WebHTMLView(WebDocumentPrivateProtocols) supportsTextEncoding]
-[WebView customTextEncodingName]
-[WebView _mainFrameOverrideEncoding]
-[WebHistory orderedLastVisitedDays]
-[WebHistoryPrivate orderedLastVisitedDays]
-[WebHistory orderedItemsLastVisitedOnDay:]
-[WebHistoryPrivate orderedItemsLastVisitedOnDay:]
-[WebHistoryItem icon]
-[WebView(WebIBActions) goForward:]
-[WebView goForward]
__ZN13WebDragClient24declareAndWriteDragImageEP12NSPasteboardP10DOMElementP5NSURLP8NSStringPN7WebCore5FrameE
__Z14getTopHTMLViewPN7WebCore5FrameE
-[DOMNode(WebDOMNodeOperations) webArchive]
+[WebArchiver archiveNode:]
+[WebArchiver _archiveWithMarkupString:fromFrame:nodes:]
-[WebResource initWithData:URL:MIMEType:textEncodingName:frameName:]
-[WebResource(WebResourcePrivate) _initWithData:URL:MIMEType:textEncodingName:frameName:response:copyData:]
-[WebResource init]
-[DOMHTMLImageElement(WebDOMHTMLImageElementOperationsPrivate) _subresourceURLs]
-[DOMNode(WebDOMNodeOperations) _URLsFromSelectors:]
-[DOMDocument(WebDOMDocumentOperations) URLWithAttributeString:]
-[WebDataSource subresourceForURL:]
-[WebResource(WebResourcePrivate) _initWithData:URL:response:MIMEType:]
-[WebArchive initWithMainResource:subresources:subframeArchives:]
-[WebArchive init]
-[NSPasteboard(WebExtras) _web_declareAndWriteDragImageForElement:URL:title:archive:source:]
+[NSPasteboard(WebExtras) _web_writableTypesForImageIncludingArchive:]
__Z33_writableTypesForImageWithArchivev
__Z36_writableTypesForImageWithoutArchivev
+[NSPasteboard(WebExtras) _web_writableTypesForURL]
-[NSPasteboard(WebExtras) _web_writeImage:element:URL:title:archive:types:source:]
-[NSPasteboard(WebExtras) _web_writeURL:andTitle:types:]
+[WebURLsWithTitles writeURLs:andTitles:toPasteboard:]
+[WebURLsWithTitles arrayWithIFURLsWithTitlesPboardType]
__Z16imageFromElementP10DOMElement
-[WebHTMLView(WebInternal) setPromisedDragTIFFDataSource:]
__Z18promisedDataClientv
__ZN7WebCore20CachedResourceClient12imageChangedEPNS_11CachedImageE
__ZN7WebCore20CachedResourceClient14notifyFinishedEPNS_14CachedResourceE
-[WebArchive data]
-[WebArchive _propertyListRepresentation]
-[WebResource(WebResourcePrivate) _propertyListRepresentation]
+[WebResource(WebResourcePrivate) _propertyListsFromResources:]
_WKGetPreferredExtensionForMIMEType
__ZN13WebDragClient27willPerformDragSourceActionEN7WebCore16DragSourceActionERKNS0_8IntPointEPNS0_9ClipboardE
-[WebDefaultUIDelegate webView:willPerformDragSourceAction:fromPoint:withPasteboard:]
__ZN13WebDragClient9startDragEN3WTF9RetainPtrI7NSImageEERKN7WebCore8IntPointES7_PNS4_9ClipboardEPNS4_5FrameEb
-[WebHTMLView(WebInternal) _mouseDownEvent]
-[WebHTMLView dragImage:at:offset:event:pasteboard:source:slideBack:]
-[WebHTMLView draggingSourceOperationMaskForLocal:]
-[WebView _hitTest:dragTypes:]
-[WebView draggingEntered:]
-[WebView documentViewAtWindowPoint:]
-[WebView(WebFileInternal) _frameViewAtWindowPoint:]
__ZN13WebDragClient17actionMaskForDragEPN7WebCore8DragDataE
-[WebDefaultUIDelegate webView:dragDestinationActionMaskForDraggingInfo:]
__ZNK19WebPasteboardHelper25insertablePasteboardTypesEv
-[WebView draggingUpdated:]
-[WebView _shouldAutoscrollForDraggingInfo:]
-[WebHTMLView draggedImage:movedTo:]
-[WebView draggingExited:]
-[WebHTMLView draggedImage:endedAt:operation:]
-[WebArchive dealloc]
-[WebArchivePrivate dealloc]
-[WebResource dealloc]
-[WebResourcePrivate dealloc]
-[WebView acceptsFirstResponder]
-[WebHTMLRepresentation receivedError:withDataSource:]
-[WebFrameBridge imageTitleForFilename:size:]
-[WebFrameBridge pluginViewWithPackage:attributeNames:attributeValues:baseURL:DOMElement:loadManually:]
-[WebPluginPackage viewFactory]
+[WebPluginController plugInViewWithArguments:fromPluginPackage:]
-[WebPluginController webFrame]
-[WebView(WebPrivate) defersCallbacks]
-[WebView(WebPrivate) setDefersCallbacks:]
-[WebPluginController addPlugin:]
+[NSObject(WebScripting) isSelectorExcludedFromWebScript:]
-[WebPluginController destroyPlugin:]
-[WebIconDatabase(WebInternal) _applicationWillTerminate:]
+[WebView _applicationWillTerminate]
-[WebHTMLView(WebPrivate) pasteboard:provideDataForType:]
-[WebHTMLView(WebInternal) promisedDragTIFFDataSource]
-[WebArchive initWithData:]
-[WebArchive _initWithPropertyList:]
-[WebResource(WebResourcePrivate) _initWithPropertyList:]
+[WebResource(WebResourcePrivate) _resourcesFromPropertyLists:]
-[NSPasteboard(WebExtras) _web_writePromisedRTFDFromArchive:containsImage:]
-[WebArchive subresources]
-[WebArchive mainResource]
-[WebResource MIMEType]
-[WebResource(WebResourcePrivate) _fileWrapperRepresentation]
-[NSPasteboard(WebExtras) _web_writeFileWrapperAsRTFDAttachment:]
+[WebPluginDatabase closeSharedDatabase]
-[WebPluginDatabase close]
-[WebPluginDatabase(Internal) _removePlugin:]
+[WebView(WebPrivate) _unregisterViewClassAndRepresentationClassForMIMEType:]
-[WebBasePluginPackage wasRemovedFromPluginDatabase:]
-[WebNetscapePluginPackage wasRemovedFromPluginDatabase:]
-[WebNetscapePluginPackage(Internal) _unloadWithShutdown:]
___tcf_3
___tcf_0
___tcf_2
_WKDrawBezeledTextFieldCell
-[WebView(WebPrivate) _UIDelegateForwarder]
+[WebDefaultUIDelegate sharedUIDelegate]
-[WebClipView resetAdditionalClip]
-[WebView(WebIBActions) canGoBack]
-[WebView(WebIBActions) canGoForward]
-[WebHTMLView(WebPrivate) hitTest:]
+[WebElementDictionary initialize]
-[WebElementDictionary initWithHitTestResult:]
+[WebElementDictionary initializeLookupTable]
__Z12addLookupKeyP8NSStringP13objc_selector
-[WebElementDictionary objectForKey:]
-[WebElementDictionary dealloc]
-[WebView(WebPendingPublic) isHoverFeedbackSuspended]
__ZN15WebChromeClient23mouseDidMoveOverElementERKN7WebCore13HitTestResultEj
-[WebView(WebPrivate) _mouseDidMoveOverElement:modifierFlags:]
__Z14CallUIDelegateP7WebViewP13objc_selectorP11objc_objectj
__Z12CallDelegateP7WebViewP11objc_objectP13objc_selectorS2_j
-[WebElementDictionary _absoluteLinkURL]
__ZN15WebChromeClient10setToolTipERKN7WebCore6StringE
-[WebHTMLView(WebPrivate) _setToolTip:]
_WKCGContextGetShouldSmoothFonts
_WKSetCGFontRenderingMode
__Z29_updateMouseoverTimerCallbackP16__CFRunLoopTimerPv
-[WebHTMLView(WebPrivate) _updateMouseoverWithFakeEvent]
-[WebHTMLView(WebPrivate) _updateMouseoverWithEvent:]
-[WebIconDatabase(WebInternal) _iconForFileURL:withSize:]
-[WebIconDatabase(WebInternal) _iconsBySplittingRepresentationsOfIcon:]
-[WebIconDatabase(WebInternal) _iconFromDictionary:forSize:cache:]
-[WebHTMLView(WebPrivate) _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
__ZN20WebFrameLoaderClient29dispatchDidFinishDocumentLoadEv
__ZN20WebFrameLoaderClient27dispatchDidLoadMainResourceEPN7WebCore14DocumentLoaderE
+[WebScriptDebugServer listenerCount]
__ZN20WebFrameLoaderClient24dispatchDidFinishLoadingEPN7WebCore14DocumentLoaderEm
-[WebView(WebViewInternal) _removeObjectForIdentifier:]
__ZN3WTF9HashTableImSt4pairImNS_9RetainPtrIP11objc_objectEEENS_18PairFirstExtractorIS6_EENS_7IntHashImEENS_14PairHashTraitsINS_10HashTraitsImEENSC_IS5_EEEESD_E4findImNS_22IdentityHashTranslatorImS6_SA_EEEENS_17HashTableIteratorImS6_S8_SA_SF_SD_EERKT_
__ZN20WebDocumentLoaderMac17decreaseLoadCountEm
__ZN3WTF9HashTableImmNS_17IdentityExtractorImEENS_7IntHashImEENS_10HashTraitsImEES6_E4findImNS_22IdentityHashTranslatorImmS4_EEEENS_17HashTableIteratorImmS2_S4_S6_S6_EERKT_
+[WebPluginDatabase sharedDatabase]
-[WebPluginDatabase init]
+[WebPluginDatabase(Internal) _defaultPlugInPaths]
-[WebPluginDatabase setPlugInPaths:]
-[WebPluginDatabase refresh]
-[WebPluginDatabase(Internal) _scanForNewPlugins]
-[WebPluginDatabase(Internal) _plugInPaths]
+[WebBasePluginPackage initialize]
+[WebBasePluginPackage pluginWithPath:]
-[WebPluginPackage initWithPath:]
-[WebBasePluginPackage initWithPath:]
-[WebBasePluginPackage pathByResolvingSymlinksAndAliasesInPath:]
-[WebBasePluginPackage dealloc]
+[WebNetscapePluginPackage initialize]
_WebLMGetCurApRefNum
_WebLMSetCurApRefNum
-[WebNetscapePluginPackage initWithPath:]
-[WebNetscapePluginPackage _initWithPath:]
-[WebBasePluginPackage getPluginInfoFromBundleAndMIMEDictionary:]
-[NSArray(WebPluginExtensions) _web_lowercaseStrings]
-[WebBasePluginPackage setMIMEToExtensionsDictionary:]
-[WebBasePluginPackage setMIMEToDescriptionDictionary:]
-[WebBasePluginPackage filename]
-[WebBasePluginPackage setName:]
-[WebBasePluginPackage setPluginDescription:]
-[WebNetscapePluginPackage getPluginInfoFromResources]
-[WebNetscapePluginPackage openResourceFile]
+[WebBasePluginPackage preferredLocalizationName]
-[WebPluginPackage load]
__Z13webGetNSImagePN7WebCore5ImageE7_NSSize
+[NSNotificationCenter(WebNSNotificationCenterExtras) _postNotificationName:]
-[NSView(WebExtras) _web_dragShouldBeginFromMouseDown:withExpiration:]
-[NSString(WebNSURLExtras) _web_isUserVisibleURL]
-[NSString(WebNSURLExtras) _webkit_looksLikeAbsoluteURL]
-[WebHistoryItem(WebPrivate) visitCount]
-[WebDynamicScrollBarsView setAllowsHorizontalScrolling:]
-[WebView(WebViewInternal) _dispatchDidReceiveIconFromWebFrame:]
__ZNK19WebPasteboardHelper17urlFromPasteboardEPK12NSPasteboardPN7WebCore6StringE
-[NSPasteboard(WebExtras) _web_bestURL]
+[WebURLsWithTitles URLsFromPasteboard:]
+[WebView(WebPrivate) canShowFile:]
+[WebView(WebPrivate) _MIMETypeForFile:]
-[WebIconDatabase releaseIconForURL:]
-[NSView(WebExtras) _web_dragOperationForDraggingInfo:]
-[WebHistory removeAllItems]
-[WebHistoryPrivate removeAllItems]
+[WebCache empty]
-[WebBackForwardList pageCacheSize]
-[WebBackForwardList setPageCacheSize:]
-[WebView(WebPrivate) setUsesPageCache:]
-[WebIconDatabase(WebPendingPublic) removeAllIcons]
__ZN21WebIconDatabaseClient25dispatchDidRemoveAllIconsEv
-[WebIconDatabase(WebInternal) _sendDidRemoveAllIconsNotification]
__ZN21WebIconDatabaseClient13performImportEv
__Z21importToWebCoreFormatv
+[ThreadEnabler enableThreading]
__Z20objectFromPathForKeyP8NSStringP11objc_object
-[ThreadEnabler threadEnablingSelector:]
-[NSString(WebKitExtras) _webkit_fixedCarbonPOSIXPath]
-[WebViewFactory pluginsInfo]
-[WebFrameView keyDown:]
_NPN_PostURLNotify
-[WebBaseNetscapePluginView(WebNPPCallbacks) postURLNotify:target:len:buf:file:notifyData:]
-[WebBaseNetscapePluginView(WebNPPCallbacks) _postURL:target:len:buf:file:notifyData:sendNotification:allowHeaders:]
-[NSData(PluginExtras) _web_startsWithBlankLine]
-[NSData(PluginExtras) _web_locationAfterFirstBlankLine]
-[NSData(WebNSDataExtras) _webkit_parseRFC822HeaderFields]
-[NSString(WebNSDataExtrasInternal) _web_capitalizeRFC822HeaderFieldName]
__ZN3WTF6VectorIN7WebCore15FormDataElementELm0EE6shrinkEm
__ZN3WTF6VectorIcLm0EE6shrinkEm
-[NSString(WebKitExtras) _web_widthWithFont:]
-[WebView(WebViewInternal) _receivedIconChangedNotification:]
-[WebView mainFrameURL]
-[WebHTMLView menuForEvent:]
-[WebViewFactory contextMenuItemTagOpenLink]
-[WebViewFactory contextMenuItemTagOpenLinkInNewWindow]
-[WebViewFactory contextMenuItemTagDownloadLinkToDisk]
-[WebViewFactory contextMenuItemTagCopyLinkToClipboard]
-[WebViewFactory contextMenuItemTagOpenImageInNewWindow]
-[WebViewFactory contextMenuItemTagDownloadImageToDisk]
-[WebViewFactory contextMenuItemTagCopyImageToClipboard]
-[WebViewFactory contextMenuItemTagSearchInSpotlight]
-[WebViewFactory contextMenuItemTagLookUpInDictionary]
-[WebViewFactory contextMenuItemTagSearchWeb]
-[WebViewFactory contextMenuItemTagCopy]
-[WebViewFactory contextMenuItemTagGoBack]
-[WebViewFactory contextMenuItemTagGoForward]
-[WebViewFactory contextMenuItemTagStop]
-[WebViewFactory contextMenuItemTagReload]
-[WebViewFactory contextMenuItemTagOpenFrameInNewWindow]
-[WebViewFactory contextMenuItemTagNoGuessesFound]
-[WebViewFactory contextMenuItemTagIgnoreSpelling]
-[WebViewFactory contextMenuItemTagLearnSpelling]
-[WebViewFactory contextMenuItemTagIgnoreGrammar]
-[WebViewFactory contextMenuItemTagCut]
-[WebViewFactory contextMenuItemTagPaste]
__ZN20WebContextMenuClient29getCustomMenuFromDefaultItemsEPN7WebCore11ContextMenuE
__Z19isPreVersion3Clientv
__Z28isPreInspectElementTagClientv
-[WebDataSource(WebPrivate) _fileWrapperForURL:]
-[WebView(WebPrivate) _cachedResponseForURL:]
-[NSMutableURLRequest(WebNSURLRequestExtras) _web_setHTTPUserAgent:]
-[WebElementDictionary _absoluteImageURL]
-[WebElementDictionary _image]
-[WebElementDictionary _titleDisplayString]
__Z13NSStringOrNilN7WebCore6StringE
-[WebElementDictionary _textContent]
__ZNK20WebFrameLoaderClient29generatedMIMETypeForURLSchemeERKN7WebCore6StringE
-[WebHistory removeItems:]
-[WebHistoryPrivate removeItems:]
-[WebHistoryPrivate removeItem:]
-[NSView(WebExtras) _web_parentWebFrameView]
-[WebHTMLView validRequestorForSendType:returnType:]
-[WebHTMLView(WebDocumentPrivateProtocols) pasteboardTypesForSelection]
-[WebHTMLView(WebInternal) _canSmartCopyOrDelete]
-[WebView(WebViewEditing) smartInsertDeleteEnabled]
-[WebBackForwardList containsItem:]
__Z4coreP14WebHistoryItem
-[WebView goToBackForwardItem:]
-[WebFrame(WebInternal) _findFrameWithSelection]
-[WebFrame(WebInternal) _hasSelection]
-[WebView(WebIBActions) stopLoading:]
-[WebFrame stopLoading]
-[NSURL(WebNSURLExtras) _web_URLWithLowercasedScheme]
+[NSPasteboard(WebExtras) _web_setFindPasteboardString:withOwner:]
-[WebView(WebPendingPublic) searchFor:direction:caseSensitive:wrap:startInSelection:]
-[WebView(WebFileInternal) _selectedOrMainFrame]
__Z14incrementFrameP8WebFrameaa
-[WebHistory _itemForURLString:]
-[WebView(WebPendingPublic) canMarkAllTextMatches]
-[WebHistoryItem(WebPrivate) _lastVisitedDate]
-[WebView prepareForDragOperation:]
-[WebView performDragOperation:]
__ZN13WebDragClient32willPerformDragDestinationActionEN7WebCore21DragDestinationActionEPNS0_8DragDataE
-[WebDefaultUIDelegate webView:willPerformDragDestinationAction:forDraggingInfo:]
-[NSString(WebKitExtras) _webkit_filenameByFixingIllegalCharacters]
-[WebIconDatabase(WebInternal) _scaleIcon:toSize:]
-[WebPDFRepresentation setDataSource:]
-[WebPDFView initWithFrame:]
+[WebPDFView(FileInternal) _PDFPreviewViewClass]
+[WebPDFView PDFKitBundle]
-[PDFPrefUpdatingProxy initWithView:]
-[WebPDFView setNextKeyView:]
-[WebPDFView viewWillMoveToWindow:]
-[WebPDFView viewDidMoveToWindow]
-[WebPDFView(FileInternal) _trackFirstResponder]
-[WebPDFView(FileInternal) _clipViewForPDFDocumentView]
-[WebPDFView becomeFirstResponder]
-[WebPDFView setDataSource:]
-[WebPDFView setNeedsLayout:]
-[WebPDFView layout]
-[WebPDFRepresentation title]
-[WebPDFView acceptsFirstResponder]
-[WebFrame(WebInternal) _clearSelectionInOtherFrames]
-[WebPDFView selectedString]
-[WebPDFRepresentation receivedData:withDataSource:]
-[WebPDFView dataSourceUpdated:]
-[WebPDFRepresentation finishedLoadingWithDataSource:]
-[WebDataSource data]
+[WebPDFRepresentation PDFDocumentClass]
-[WebPDFView setPDFDocument:]
-[WebPDFView(FileInternal) _scaleOrDisplayModeOrPageChanged:]
-[WebPDFView(FileInternal) _applyPDFDefaults]
-[WebPreferences(WebPrivate) PDFScaleFactor]
-[WebPreferences _floatValueForKey:]
-[WebPreferences(WebPrivate) PDFDisplayMode]
-[WebPDFView hitTest:]
-[WebPDFView string]
-[WebPDFView(FileInternal) _PDFDocumentViewMightHaveScrolled:]
-[NSView(WebExtras) _webView]
-[WebPDFView(FileInternal) _updatePreferencesSoon]
-[WebPDFView(FileInternal) _updatePreferences:]
-[WebPreferences(WebPrivate) setPDFScaleFactor:]
-[WebPreferences _setFloatValue:forKey:]
-[NSMutableDictionary(WebNSDictionaryExtras) _webkit_setFloat:forKey:]
-[WebPreferences(WebPrivate) setPDFDisplayMode:]
-[WebPreferences _setIntegerValue:forKey:]
-[WebPDFView PDFViewSavePDFToDownloadFolder:]
__Z14CallUIDelegateP7WebViewP13objc_selectorP11objc_objecta
__Z12CallDelegateP7WebViewP11objc_objectP13objc_selectorS2_a
-[NSFileManager(WebNSFileManagerExtras) _webkit_setMetadataURL:referrer:atPath:]
_WKSetMetadataURL
-[WebPDFView PDFViewOpenPDFInNativeApplication:]
-[WebPDFView(FileInternal) _openWithFinder:]
-[WebPDFView(FileInternal) _path]
-[WebPDFView(FileInternal) _temporaryPDFDirectoryPath]
-[WebPDFView menuForEvent:]
-[WebPDFView(FileInternal) _menuItemsFromPDFKitForEvent:]
-[NSMutableArray(WebExtras) _webkit_removeUselessMenuItemSeparators]
-[WebPDFView elementAtPoint:]
-[WebPDFView(FileInternal) _pointIsInSelection:]
-[WebView(WebPrivate) _menuForElement:defaultItems:]
-[WebDefaultUIDelegate(WebContextMenu) webView:contextMenuItemsForElement:defaultMenuItems:]
-[WebDefaultUIDelegate(WebContextMenu) menuItemWithTag:target:representedObject:]
-[WebDefaultUIDelegate(WebContextMenu) appendDefaultItems:toArray:]
-[WebPDFRepresentation canProvideDocumentSource]
-[WebPDFView(FileInternal) _anyPDFTagsFoundInMenu:]
-[WebPDFView validateUserInterfaceItem:]
-[WebPDFView validateUserInterfaceItemWithoutDelegate:]
-[PDFPrefUpdatingProxy methodSignatureForSelector:]
-[WebPDFView(FileInternal) _PDFSubview]
-[PDFPrefUpdatingProxy forwardInvocation:]
-[WebPDFView viewState]
-[WebPDFView dealloc]
-[WebPDFView setViewState:]
-[NSMutableDictionary(WebNSDictionaryExtras) _webkit_setInt:forKey:]
-[WebPDFView deselectAll]
-[WebView(WebPendingPublic) markAllMatchesForText:caseSensitive:highlight:limit:]
-[WebPDFView setMarkedTextMatchesAreHighlighted:]
-[WebPDFView markAllMatchesForText:caseSensitive:limit:]
-[WebPDFView(FileInternal) _nextMatchFor:direction:caseSensitive:wrap:fromSelection:startInSelection:]
-[WebPDFView(FileInternal) _setTextMatches:]
-[WebPDFView searchFor:direction:caseSensitive:wrap:startInSelection:]
-[WebView(WebPendingPublic) unmarkAllTextMatches]
-[WebPDFView unmarkAllTextMatches]
-[WebView(WebViewEditingActions) scrollLineDown:]
-[WebView(WebViewEditingActions) _performResponderOperation:with:]
-[WebView(WebFileInternal) _responderForResponderOperations]
-[NSView(WebExtras) _web_firstResponderIsSelfOrDescendantView]
-[WebPDFView scrollLineDown:]
-[WebPDFView(FileInternal) _fakeKeyEventWithFunctionKey:]
-[WebHTMLView namesOfPromisedFilesDroppedAtDestination:]
-[NSFileManager(WebNSFileManagerExtras) _webkit_pathWithUniqueFilenameForPath:]
-[WebView _autoscrollForDraggingInfo:timeDelta:]
-[WebHTMLView(WebPrivate) pasteboardChangedOwner:]
-[_WebCoreHistoryProvider containsURL:length:]
-[WebHistory containsItemForURLString:]
-[WebHistoryPrivate containsItemForURLString:]
_WKSetUpFontCache
-[WebHTMLView dataSourceUpdated:]
__ZN20WebFrameLoaderClient39postProgressEstimateChangedNotificationEv
__ZN20WebFrameLoaderClient31dispatchDidReceiveContentLengthEPN7WebCore14DocumentLoaderEmi
__Z24CallResourceLoadDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS2_S0_iS0_
__Z12CallDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS0_S2_S0_iS0_
-[WebHTMLRepresentation finishedLoadingWithDataSource:]
-[WebView(WebViewEditing) isEditable]
-[WebBaseNetscapePluginView viewWillMoveToHostWindow:]
-[WebBaseNetscapePluginView viewDidMoveToHostWindow]
__ZN20WebContextMenuClient11downloadURLERKN7WebCore4KURLE
-[WebView(WebPrivate) _downloadURL:]
-[WebDownload _initWithRequest:delegate:directory:]
-[WebDownload _setRealDelegate:]
-[WebDownloadInternal setRealDelegate:]
-[WebDownload initWithRequest:delegate:]
-[WebDownload init]
-[WebDownloadInternal respondsToSelector:]
-[WebDownloadInternal downloadDidBegin:]
-[WebDownloadInternal download:didReceiveResponse:]
-[WebDownloadInternal download:decideDestinationWithSuggestedFilename:]
-[WebDownloadInternal download:didCreateDestination:]
-[WebDownloadInternal download:didReceiveDataOfLength:]
-[WebDownloadInternal downloadDidFinish:]
-[WebDownload dealloc]
-[WebDownloadInternal dealloc]
-[WebFramePolicyListener download]
__ZN20WebFrameLoaderClient8downloadEPN7WebCore14ResourceHandleERKNS0_15ResourceRequestES5_RKNS0_16ResourceResponseE
-[WebDownload _initWithLoadingConnection:request:response:delegate:proxy:]
__ZNK20WebFrameLoaderClient25setOriginalURLForDownloadEP11WebDownloadRKN7WebCore15ResourceRequestE
+[WebStringTruncator widthOfString:font:]
-[WebBackForwardList backListCount]
-[WebBackForwardList itemAtIndex:]
-[NSEvent(WebExtras) _web_isDeleteKeyEvent]
-[NSEvent(WebExtras) _web_isKeyEvent:]
-[WebBaseNetscapePluginView keyDown:]
_WKSendKeyEventToTSM
__Z15TSMEventHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
-[WebBaseNetscapePluginView keyUp:]
__ZN20WebFrameLoaderClient22createJavaAppletWidgetERKN7WebCore7IntSizeEPNS0_7ElementERKNS0_4KURLERKN3WTF6VectorINS0_6StringELm0EEESE_
-[WebFrameBridge viewForJavaAppletWithFrame:attributeNames:attributeValues:baseURL:DOMElement:]
-[WebPluginController webPlugInContainerShowStatus:]
-[NSEvent(WebExtras) _web_isEscapeKeyEvent]
-[WebView(WebIBActions) makeTextSmaller:]
-[WebHTMLView(WebTextSizing) _makeTextSmaller:]
-[WebView(WebIBActions) makeTextStandardSize:]
-[WebHTMLView(WebTextSizing) _makeTextStandardSize:]
-[WebView(WebIBActions) makeTextLarger:]
-[WebHTMLView(WebTextSizing) _makeTextLarger:]
-[WebView initWithCoder:]
-[WebFrameView initWithCoder:]
-[WebPreferences initWithCoder:]
+[WebPreferences(WebInternal) _concatenateKeyWithIBCreatorID:]
-[WebView setPreferences:]
-[WebPreferences setMinimumFontSize:]
-[WebHTMLRepresentation documentSource]
-[WebFrame loadData:MIMEType:textEncodingName:baseURL:]
-[WebView(WebViewInternal) _userVisibleBundleVersionFromFullVersion:]
-[WebDefaultPolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:]
+[WebPreferences(WebPrivate) _checkLastReferenceForIdentifier:]
-[WebPreferences dealloc]
-[WebPreferencesPrivate dealloc]
-[WebBackForwardList backListWithLimit:]
__Z15vectorToNSArrayRN3WTF6VectorINS_6RefPtrIN7WebCore11HistoryItemEEELm0EEE
__ZN3WTF6VectorINS_6RefPtrIN7WebCore11HistoryItemEEELm0EE6shrinkEm
-[WebHistoryItem(WebPrivate) targetItem]
-[WebHTMLView(WebDocumentInternalProtocols) setMarkedTextMatchesAreHighlighted:]
-[WebHTMLView(WebDocumentInternalProtocols) markAllMatchesForText:caseSensitive:limit:]
-[WebHTMLView(WebDocumentPrivateProtocols) searchFor:direction:caseSensitive:wrap:startInSelection:]
-[WebHTMLView(WebDocumentInternalProtocols) unmarkAllTextMatches]
-[WebFrameView(WebPrivate) _contentView]
-[WebHTMLView(WebDocumentPrivateProtocols) selectionView]
-[WebView(WebPendingPublic) rectsForTextMatches]
-[WebHTMLView(WebDocumentInternalProtocols) rectsForTextMatches]
-[WebHTMLView(WebDocumentPrivateProtocols) selectionRect]
-[WebHTMLView(WebDocumentPrivateProtocols) selectionTextRects]
__ZN3WTF6VectorIN7WebCore9FloatRectELm0EE6shrinkEm
-[WebHTMLView(WebDocumentPrivateProtocols) selectionImageForcingBlackText:]
-[WebHTMLView(WebDocumentPrivateProtocols) selectedString]
__Z8hexDigiti
__ZNK20WebFrameLoaderClient14willUseArchiveEPN7WebCore14ResourceLoaderERKNS0_15ResourceRequestERKNS0_4KURLE
__ZNK20WebFrameLoaderClient22canUseArchivedResourceEP12NSURLRequest
-[WebDataSource(WebInternal) _archivedSubresourceForURL:]
+[WebHistoryItem(WebPrivate) _releaseAllPendingPageCaches]
-[WebView initWithFrame:]
-[WebView stringByEvaluatingJavaScriptFromString:]
-[WebFrameView(WebPrivate) _hasScrollBars]
-[WebFrameView(WebPrivate) _largestChildWithScrollBars]
__ZN15WebEditorClient17userVisibleStringEP5NSURL
_WKGetExtensionsForMIMEType
_WKSetPatternBaseCTM
-[DOMNode(WebDOMNodeOperations) _subresourceURLs]
-[DOMHTMLScriptElement(WebDOMHTMLScriptElementOperationsPrivate) _subresourceURLs]
-[DOMHTMLLinkElement(WebDOMHTMLLinkElementOperationsPrivate) _subresourceURLs]
-[DOMHTMLBodyElement(WebDOMHTMLBodyElementOperationsPrivate) _subresourceURLs]
-[DOMHTMLInputElement(WebDOMHTMLInputElementOperationsPrivate) _subresourceURLs]
+[WebView(WebPrivate) _decodeData:]
-[WebPreferences userStyleSheetLocation]
-[WebPreferences setUserStyleSheetEnabled:]
-[WebPreferences(WebPrivate) setDeveloperExtrasEnabled:]
__ZN18WebInspectorClient19inspectedURLChangedERKN7WebCore6StringE
__ZNK18WebInspectorClient17updateWindowTitleEv
-[WebView(WebPrivate) inspector]
-[WebInspector initWithWebView:]
-[WebInspector show:]
__ZN18WebInspectorClient10createPageEv
-[WebInspectorWindowController initWithInspectedWebView:]
-[WebInspectorWindowController init]
-[WebPreferences init]
-[WebPreferences setLoadsImagesAutomatically:]
-[WebPreferences(WebPrivate) setAuthorAndUserStylesEnabled:]
-[WebPreferences setJavaScriptEnabled:]
-[WebPreferences setAllowsAnimatedImages:]
-[WebPreferences setPlugInsEnabled:]
-[WebPreferences setJavaEnabled:]
-[WebPreferences setTabsToLinks:]
-[WebPreferences setMinimumLogicalFontSize:]
-[WebView setDrawsBackground:]
-[WebView(WebPrivate) setProhibitsMainFrameScrolling:]
-[WebInspectorWindowController webView]
-[WebDefaultPolicyDelegate webView:decidePolicyForMIMEType:request:frame:decisionListener:]
__ZN18WebInspectorClient19localizedStringsURLEv
__ZN18WebInspectorClient10showWindowEv
-[WebInspectorWindowController window]
_WKNSWindowMakeBottomCornersSquare
-[WebInspectorWindowController showWindow:]
-[WebDefaultUIDelegate webViewFirstResponder:]
-[WebDefaultUIDelegate webView:didDrawRect:]
-[WebInspectorWindowController windowShouldClose:]
-[WebInspector showConsole:]
-[WebDefaultUIDelegate webView:makeFirstResponder:]
__ZN18WebInspectorClient12attachWindowEv
-[WebInspectorWindowController attach]
-[WebInspectorWindowController close]
-[WebInspectorWindowController animationDidEnd:]
__ZN18WebInspectorClient12detachWindowEv
-[WebInspectorWindowController detach]
-[WebView setShouldCloseWithWindow:]
-[WebFrame globalContext]
__ZN15WebEditorClient18shouldBeginEditingEPN7WebCore5RangeE
-[WebDefaultEditingDelegate webView:shouldBeginEditingInDOMRange:]
__ZN15WebEditorClient15didBeginEditingEv
__ZN15WebEditorClient25shouldShowDeleteInterfaceEPN7WebCore11HTMLElementE
-[WebDefaultEditingDelegate webView:shouldShowDeleteInterfaceForElement:]
-[WebDefaultEditingDelegate undoManagerForWebView:]
__ZN15WebEditorClient16shouldEndEditingEPN7WebCore5RangeE
-[WebDefaultEditingDelegate webView:shouldEndEditingInDOMRange:]
__ZN15WebEditorClient13didEndEditingEv
-[WebView(WebFileInternal) _isLoading]
-[WebDefaultUIDelegate webView:didScrollDocumentInFrameView:]
-[WebFrameBridge setIsSelected:forView:]
-[WebViewFactory contextMenuItemTagInspectElement]
__ZN18WebInspectorClient9highlightEPN7WebCore4NodeE
-[WebInspectorWindowController highlightAndScrollToNode:]
-[WebInspectorWindowController highlightNode:]
-[WebNodeHighlight initWithTargetView:]
-[WebNodeHighlight(FileInternal) _computeHighlightWindowFrame]
-[WebNodeHighlightView initWithWebNodeHighlight:]
-[WebNodeHighlightView setFractionFadedIn:]
-[WebNodeHighlight setDelegate:]
-[WebNodeHighlight attachHighlight]
-[WebNodeHighlightView drawRect:]
-[WebNodeHighlightView(FileInternal) _holes]
-[WebNodeHighlight highlightedNode]
-[WebNodeHighlight targetView]
-[NSView(WebExtras) _web_convertRect:toView:]
-[WebNodeHighlight show]
-[WebNodeHighlightView fractionFadedIn]
-[WebNodeHighlight setHighlightedNode:]
-[WebNodeHighlight highlightView]
-[WebNodeHighlightFadeInAnimation setCurrentProgress:]
-[WebNodeHighlight(FileInternal) _animateFadeIn:]
-[WebNodeHighlight animationDidEnd:]
-[WebNodeHighlight(FileInternal) _repositionHighlightWindow]
-[WebFrameView _goBack]
__ZN18WebInspectorClient13hideHighlightEv
-[WebInspectorWindowController hideHighlight]
-[WebNodeHighlight hide]
-[WebInspector webViewClosed]
__ZN18WebInspectorClient11closeWindowEv
-[WebNodeHighlight detachHighlight]
-[WebNodeHighlightView detachFromWebNodeHighlight]
-[WebNodeHighlight dealloc]
-[WebInspectorWindowController dealloc]
-[WebNodeHighlightView dealloc]
-[WebView customUserAgent]
+[WebCoreStatistics setShouldPrintExceptions:]
+[WebKitStatistics webViewCount]
+[WebKitStatistics frameCount]
+[WebKitStatistics dataSourceCount]
+[WebKitStatistics viewCount]
+[WebKitStatistics HTMLRepresentationCount]
+[WebKitStatistics bridgeCount]
+[WebCoreStatistics javaScriptProtectedGlobalObjectsCount]
+[WebCoreStatistics statistics]
+[WebCache statistics]
+[WebCoreStatistics javaScriptObjectsCount]
+[WebCoreStatistics javaScriptGlobalObjectsCount]
+[WebCoreStatistics javaScriptProtectedObjectsCount]
+[WebCoreStatistics javaScriptProtectedObjectTypeCounts]
+[WebCoreStatistics iconPageURLMappingCount]
+[WebCoreStatistics iconRetainedPageURLCount]
+[WebCoreStatistics iconRecordCount]
+[WebCoreStatistics iconsWithDataCount]
+[WebCoreStatistics garbageCollectJavaScriptObjects]
-[WebHTMLView(WebPrivate) _hasInsertionPoint]
-[WebHTMLRepresentation canSaveAsWebArchive]
+[WebView(WebPrivate) suggestedFileExtensionForMIMEType:]
-[WebHTMLRepresentation DOMDocument]
-[WebFrameView documentViewShouldHandlePrint]
-[WebFrameView printOperationWithPrintInfo:]
-[WebFrameView canPrintHeadersAndFooters]
-[WebHTMLView canPrintHeadersAndFooters]
-[WebHTMLView knowsPageRange:]
-[WebHTMLView _availablePaperWidthForPrintOperation:]
-[WebHTMLView _setPrinting:minimumPageWidth:maximumPageWidth:adjustViewSize:]
-[WebView(WebViewPrintingPrivate) _adjustPrintingMarginsForHeaderAndFooter]
-[NSPrintOperation(WebKitExtras) _web_pageSetupScaleFactor]
-[WebView(WebViewPrintingPrivate) _headerHeight]
__Z28CallUIDelegateReturningFloatP7WebViewP13objc_selector
__Z26CallDelegateReturningFloatP7WebViewP11objc_objectP13objc_selector
-[WebView(WebViewPrintingPrivate) _footerHeight]
-[WebHTMLView _scaleFactorForPrintOperation:]
-[WebHTMLView(WebHTMLViewFileInternal) _calculatePrintHeight]
-[WebHTMLView _provideTotalScaleFactorForPrintOperation:]
-[WebHTMLView beginDocument]
-[WebHTMLView rectForPage:]
-[WebHTMLView endDocument]
-[WebHTMLView _endPrintMode]
-[WebHTMLView drawPageBorderWithSize:]
-[WebView(WebViewPrintingPrivate) _drawHeaderAndFooter]
-[WebView(WebViewPrintingPrivate) _drawHeaderInRect:]
__Z14CallUIDelegateP7WebViewP13objc_selector7_NSRect
__Z12CallDelegateP7WebViewP11objc_objectP13objc_selector7_NSRect
-[WebView(WebViewPrintingPrivate) _drawFooterInRect:]
_NPN_MemAlloc
-[WebBaseNetscapePluginView fixWindowPort]
_WKCGContextIsBitmapContext
_WKCallDrawingNotification
__ZN20WebFrameLoaderClient41dispatchDidReceiveAuthenticationChallengeEPN7WebCore14DocumentLoaderEmRKNS0_23AuthenticationChallengeE
+[WebPanelAuthenticationHandler sharedHandler]
-[WebPanelAuthenticationHandler init]
-[WebPanelAuthenticationHandler startAuthentication:window:]
-[WebAuthenticationPanel initWithCallback:selector:]
-[NSMutableDictionary(WebNSDictionaryExtras) _webkit_setObject:forUncopiedKey:]
-[WebAuthenticationPanel runAsSheetOnWindow:withChallenge:]
-[WebAuthenticationPanel setUpForChallenge:]
-[WebAuthenticationPanel loadNib]
-[NSControl(WebExtras) sizeToFitAndAdjustWindowHeight]
-[WebAuthenticationPanel logIn:]
-[WebAuthenticationPanel sheetDidEnd:returnCode:contextInfo:]
-[WebPanelAuthenticationHandler _authenticationDoneWithChallenge:result:]
-[WebAuthenticationPanel dealloc]
-[WebPanelAuthenticationHandler tryNextChallengeForWindow:]
-[WebDownloadInternal download:shouldDecodeSourceDataOfMIMEType:]
__ZN20WebFrameLoaderClient20redirectDataToPluginEPN7WebCore6WidgetE
-[WebFrameBridge redirectDataToPlugin:]
-[WebHTMLRepresentation _redirectDataToManualLoader:forPluginView:]
-[WebPluginController pluginView:receivedResponse:]
-[WebPluginController pluginView:receivedError:]
-[WebPluginController pluginView:receivedData:]
__ZN15WebChromeClient12canTakeFocusEN7WebCore14FocusDirectionE
__ZN15WebChromeClient9takeFocusEN7WebCore14FocusDirectionE
-[WebView(WebViewInternal) _becomingFirstResponderFromOutside]
-[WebPluginController _webPluginContainerCheckIfAllowedToLoadRequest:inFrame:resultObject:selector:]
+[WebPluginContainerCheck checkWithRequest:target:resultObject:selector:controller:]
-[WebPluginContainerCheck initWithRequest:target:resultObject:selector:controller:]
-[WebPluginContainerCheck start]
-[WebPluginContainerCheck _isForbiddenFileLoad]
-[WebPluginController bridge]
-[WebPluginContainerCheck _askPolicyDelegate]
-[WebPluginController webView]
-[WebPluginContainerCheck _actionInformationWithURL:]
-[WebPolicyDecisionListener _initWithTarget:action:]
-[WebPolicyDecisionListenerPrivate initWithTarget:action:]
-[WebPolicyDecisionListener use]
-[WebPolicyDecisionListener _usePolicy:]
-[WebPluginContainerCheck _continueWithPolicy:]
-[WebPluginController _webPluginContainerCancelCheckIfAllowedToLoadRequest:]
-[WebPluginContainerCheck cancel]
-[WebPolicyDecisionListener _invalidate]
-[WebPolicyDecisionListener dealloc]
-[WebPolicyDecisionListenerPrivate dealloc]
-[WebPluginContainerCheck dealloc]
-[WebBaseNetscapePluginView(Internal) _redeliverStream]
-[WebBaseNetscapePluginView pluginView:receivedResponse:]
-[WebNetscapePluginStream initWithFrameLoader:]
-[WebBaseNetscapePluginView pluginView:receivedData:]
-[WebBaseNetscapePluginStream plugin]
-[WebBaseNetscapePluginView plugin]
-[WebBaseNetscapePluginView pluginViewFinishedLoading:]
__ZN13WebDragClient22createDragImageForLinkERN7WebCore4KURLERKNS0_6StringEPNS0_5FrameE
-[WebHTMLView(WebPrivate) _dragImageForURL:withLabel:]
-[NSString(WebKitExtras) _web_drawDoubledAtPoint:withTopColor:bottomColor:font:]
-[WebViewFactory fileButtonChooseFileLabel]
-[WebViewFactory fileButtonNoFileSelectedLabel]
-[WebViewFactory submitButtonDefaultLabel]
__ZN15WebChromeClient19runJavaScriptPromptEPN7WebCore5FrameERKNS0_6StringES5_RS3_
__Z14CallUIDelegateP7WebViewP13objc_selectorP11objc_objectS4_S4_
__Z12CallDelegateP7WebViewP11objc_objectP13objc_selectorS2_S2_S2_
-[WebJavaScriptTextInputPanel initWithPrompt:text:]
-[NSWindow(WebExtras) centerOverMainWindow]
-[WebJavaScriptTextInputPanel pressedOK:]
-[WebJavaScriptTextInputPanel text]
__ZN15WebEditorClient26shouldMoveRangeAfterDeleteEPN7WebCore5RangeES2_
-[WebDefaultEditingDelegate webView:shouldMoveRangeAfterDelete:replacingRange:]
__ZN15WebChromeClient18runJavaScriptAlertEPN7WebCore5FrameERKNS0_6StringE
__ZN15WebChromeClient27runBeforeUnloadConfirmPanelERKN7WebCore6StringEPNS0_5FrameE
__Z30CallUIDelegateReturningBooleanaP7WebViewP13objc_selectorP11objc_objectS4_
__Z28CallDelegateReturningBooleanaP7WebViewP11objc_objectP13objc_selectorS2_S2_
__ZN15WebEditorClient34updateSpellingUIWithMisspelledWordERKN7WebCore6StringE
__ZN15WebEditorClient17getGuessesForWordERKN7WebCore6StringERN3WTF6VectorIS1_Lm0EEE
__ZN3WTF6VectorIN7WebCore6StringELm0EE14expandCapacityEm
__ZN3WTF6VectorIN7WebCore6StringELm0EE15reserveCapacityEm
-[WebViewFactory contextMenuItemTagSpellingMenu]
-[WebViewFactory contextMenuItemTagShowSpellingPanel:]
-[WebViewFactory contextMenuItemTagCheckSpelling]
-[WebViewFactory contextMenuItemTagCheckSpellingWhileTyping]
-[WebViewFactory contextMenuItemTagCheckGrammarWithSpelling]
__ZN15WebEditorClient19spellingUIIsShowingEv
-[WebViewFactory contextMenuItemTagFontMenu]
-[WebViewFactory contextMenuItemTagShowFonts]
-[WebViewFactory contextMenuItemTagBold]
-[WebViewFactory contextMenuItemTagItalic]
-[WebViewFactory contextMenuItemTagUnderline]
-[WebViewFactory contextMenuItemTagOutline]
-[WebViewFactory contextMenuItemTagStyles]
-[WebViewFactory contextMenuItemTagShowColors]
-[WebViewFactory contextMenuItemTagSpeechMenu]
-[WebViewFactory contextMenuItemTagStartSpeaking]
-[WebViewFactory contextMenuItemTagStopSpeaking]
-[WebViewFactory contextMenuItemTagWritingDirectionMenu]
-[WebViewFactory contextMenuItemTagDefaultDirection]
-[WebViewFactory contextMenuItemTagLeftToRight]
-[WebViewFactory contextMenuItemTagRightToLeft]
__ZN15WebEditorClient21toggleGrammarCheckingEv
-[WebView(WebViewGrammarChecking) toggleGrammarChecking:]
-[WebView(WebViewGrammarChecking) setGrammarCheckingEnabled:]
__ZN15WebEditorClient20checkGrammarOfStringEPKtiRN3WTF6VectorIN7WebCore13GrammarDetailELm0EEEPiS8_
__ZN3WTF6VectorIN7WebCore13GrammarDetailELm0EE14expandCapacityEmPKS2_
__ZN3WTF6VectorIN7WebCore13GrammarDetailELm0EE14expandCapacityEm
__ZN3WTF6VectorIN7WebCore13GrammarDetailELm0EE15reserveCapacityEm
__ZN3WTF6VectorIN7WebCore6StringELm0EEC2ERKS3_
__ZN3WTF6VectorIN7WebCore6StringELm0EE14expandCapacityEmPKS2_
__ZN3WTF6VectorIN7WebCore6StringELm0EE6shrinkEm
-[WebHTMLView selectAll:]
-[WebHTMLView executeCoreCommandBySelector:]
-[WebHTMLView callDelegateDoCommandBySelectorIfNeeded:]
-[WebHTMLView showGuessPanel:]
-[WebHTMLView ignoreSpelling:]
-[WebHTMLView checkSpelling:]
__ZN15WebEditorClient33updateSpellingUIWithGrammarStringERKN7WebCore6StringERKNS0_13GrammarDetailE
-[WebHTMLView changeSpelling:]
-[WebHTMLView _changeSpellingToWord:]
-[WebHTMLView(WebHTMLViewFileInternal) _shouldReplaceSelectionWithText:givenAction:]
-[WebHTMLView(WebHTMLViewFileInternal) _selectedRange]
-[WebHTMLView(WebHTMLViewFileInternal) _shouldInsertText:replacingDOMRange:givenAction:]
-[WebView windowScriptObject]
-[WebView setCustomTextEncodingName:]
-[WebPreferences setStandardFontFamily:]
-[WebPreferences _setStringValue:forKey:]
-[WebPreferences setDefaultFontSize:]
-[WebPreferences setDefaultTextEncodingName:]
+[WebDatabaseManager sharedWebDatabaseManager]
-[WebDatabaseManager origins]
-[WebFrameBridge runOpenPanelForFileButtonWithResultListener:]
_WKCreateCustomCFReadStream
_WKSignalCFReadStreamHasBytes
_WKSignalCFReadStreamEnd
-[WebHTMLView copy:]
__ZN15WebEditorClient24smartInsertDeleteEnabledEv
__ZN15WebEditorClient33didSetSelectionTypesForPasteboardEv
-[WebDefaultEditingDelegate webView:didSetSelectionTypesForPasteboard:]
__ZN15WebEditorClient24dataForArchivedSelectionEPN7WebCore5FrameE
+[WebArchiver archiveSelectionInFrame:]
-[DOMHTMLTableCellElement(WebDOMHTMLTableCellElementOperationsPrivate) _subresourceURLs]
-[DOMHTMLTableCellElement(WebDOMHTMLTableCellElementOperationsPrivate) _web_background]
-[DOMHTMLTableElement(WebDOMHTMLTableElementOperationsPrivate) _subresourceURLs]
-[DOMHTMLTableElement(WebDOMHTMLTableElementOperationsPrivate) _web_background]
__ZN15WebEditorClient29didWriteSelectionToPasteboardEv
-[WebDefaultEditingDelegate webView:didWriteSelectionToPasteboard:]
-[WebView(WebPendingPublic) setHoverFeedbackSuspended:]
-[WebHTMLView(WebInternal) _hoverFeedbackSuspendedChanged]
-[WebView elementAtPoint:]
-[WebView _elementAtWindowPoint:]
-[WebHTMLView(WebDocumentInternalProtocols) elementAtPoint:]
+[WebIconDatabase(WebPrivate) _checkIntegrityBeforeOpening]
-[WebPDFRepresentation receivedError:withDataSource:]
-[WebViewFactory resetButtonDefaultLabel]
_NPN_GetJavaEnv
_NPN_GetJavaPeer
__ZNK15WebEditorClient7canUndoEv
__ZN15WebEditorClient4undoEv
-[WebEditorUndoTarget undoEditing:]
-[WebEditCommand command]
__ZN15WebEditorClient22registerCommandForRedoEN3WTF10PassRefPtrIN7WebCore11EditCommandEEE
__ZN15WebChromeClient5printEPN7WebCore5FrameE
__ZNK15WebEditorClient7canRedoEv
__ZN15WebEditorClient4redoEv
-[WebEditorUndoTarget redoEditing:]
-[WebFrameBridge customHighlightRect:forLine:representedNode:]
-[WebHTMLView(WebInternal) _highlighterForType:]
-[WebFrameBridge paintCustomHighlight:forBox:onLine:behindText:entireLine:representedNode:]
_WKQTMovieViewSetDrawSynchronously
-[WebViewFactory searchableIndexIntroduction]
_WKDrawMediaMuteButton
_drawMediaImage
_WKDrawMediaPlayButton
_WKDrawMediaSliderTrack
_WKDrawMediaSliderThumb
_WKDrawMediaSeekBackButton
_WKDrawMediaSeekForwardButton
_WKQTMovieMaxTimeLoaded
__ZN20WebFrameLoaderClient12blockedErrorERKN7WebCore15ResourceRequestE
__ZN15WebChromeClient21exceededDatabaseQuotaEPN7WebCore5FrameERKNS0_6StringE
-[WebSecurityOrigin(WebInternal) _initWithWebCoreSecurityOrigin:]
-[WebSecurityOrigin quota]
-[WebDatabaseManager detailsForDatabase:withOrigin:]
-[WebSecurityOrigin(WebInternal) _core]
-[WebSecurityOrigin setQuota:]
__ZN24WebDatabaseTrackerClient23dispatchDidModifyOriginEPN7WebCore14SecurityOriginE
-[WebSecurityOrigin dealloc]
__ZN24WebDatabaseTrackerClient25dispatchDidModifyDatabaseEPN7WebCore14SecurityOriginERKNS0_6StringE
_WKReleaseStyleGroup
-[WebKeyGenerator strengthMenuItemTitles]
__ZN15WebChromeClient20runJavaScriptConfirmEPN7WebCore5FrameERKNS0_6StringE
__ZN15WebChromeClient15toolbarsVisibleEv
__Z30CallUIDelegateReturningBooleanaP7WebViewP13objc_selector
__Z28CallDelegateReturningBooleanaP7WebViewP11objc_objectP13objc_selector
__ZN15WebChromeClient14menubarVisibleEv
__ZN15WebChromeClient17scrollbarsVisibleEv
-[WebFrameView allowsScrolling]
-[WebDynamicScrollBarsView allowsScrolling]
__ZN15WebChromeClient16statusbarVisibleEv
__ZSt25__unguarded_linear_insertIPiiEvT_T0_
-[WebFrame(WebInternal) _internalLoadDelegate]
-[WebFrame(WebInternal) _setInternalLoadDelegate:]
-[WebBaseNetscapePluginView(WebNPPCallbacks) webFrame:didFinishLoadWithError:]
-[WebBaseNetscapePluginView(WebNPPCallbacks) webFrame:didFinishLoadWithReason:]
|