forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebKit.order
More file actions
2576 lines (2576 loc) · 152 KB
/
WebKit.order
File metadata and controls
2576 lines (2576 loc) · 152 KB
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
+[WebPreferences initialize]
_WebKitLinkedOnOrAfter
+[WebPreferences(WebPrivate) setWebKitLinkTimeVersion:]
_setWebKitLinkTimeVersion
+[WebPreferences standardPreferences]
-[WebPreferences initWithIdentifier:]
+[WebPreferences(WebPrivate) _getInstanceForIdentifier:]
+[WebPreferences(WebPrivate) _setInstance:forIdentifier:]
-[WebPreferences(WebPrivate) _postPreferencesChangedNotification]
-[WebPreferences _postCacheModelChangedNotification]
-[WebPreferences setAutosaves:]
-[NSString(WebKitExtras) _web_stringByAbbreviatingWithTildeInPath]
_WebInstallMemoryPressureHandler
+[WebPreferences(WebPrivate) _setInitialDefaultTextEncodingToSystemEncoding]
+[WebPreferences(WebPrivate) _systemCFStringEncoding]
_WKGetWebDefaultCFStringEncoding
-[NSString(WebKitExtras) _webkit_isCaseInsensitiveEqualToString:]
-[WebPreferences setPrivateBrowsingEnabled:]
-[WebPreferences _setBoolValue:forKey:]
-[WebPreferences _boolValueForKey:]
-[WebPreferences _integerValueForKey:]
-[WebPreferences _valueForKey:]
+[WebView initialize]
__Z26InitWebCoreSystemInterfacev
+[WebView _shouldAutomaticQuoteSubstitutionBeEnabled]
+[WebView _shouldAutomaticDashSubstitutionBeEnabled]
+[WebView _shouldAutomaticTextReplacementBeEnabled]
+[WebView _shouldAutomaticSpellingCorrectionBeEnabled]
+[WebView(WebPrivate) _setDomainRelaxationForbidden:forURLScheme:]
+[WebView(WebPrivate) _registerURLSchemeAsAllowingLocalStorageAccessInPrivateBrowsing:]
+[WebView(WebPrivate) _registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsing:]
-[WebPreferences setPlugInsEnabled:]
-[WebPreferences setJavaEnabled:]
+[NSPasteboard(WebExtras) _web_dragTypesForURL]
_WebLocalizedString
+[NSURL(WebNSURLExtras) _web_URLWithDataAsString:]
+[NSURL(WebNSURLExtras) _web_URLWithDataAsString:relativeToURL:]
-[NSString(WebKitExtras) _webkit_stringByTrimmingWhitespace]
-[NSString(WebNSURLExtras) _web_isUserVisibleURL]
-[NSURL(WebNSURLExtras) _web_userVisibleString]
-[NSURL(WebNSURLExtras) _web_originalDataAsString]
-[NSString(WebKitExtras) _web_widthWithFont:]
__ZN7WebCore10FontGlyphsD2Ev
__ZN7WebCore15FontDescriptionD2Ev
+[WebPreferences(WebInternal) _concatenateKeyWithIBCreatorID:]
+[WebPreferences(WebInternal) _IBCreatorID]
-[WebPreferences setCacheModel:]
-[WebPreferences _setIntegerValue:forKey:]
-[NSMutableDictionary(WebNSDictionaryExtras) _webkit_setInt:forKey:]
-[WebPreferences(WebPrivate) setAutomaticallyDetectsCacheModel:]
-[WebPreferences setDefaultFontSize:]
-[WebPreferences setJavaScriptCanOpenWindowsAutomatically:]
-[WebPreferences setUserStyleSheetEnabled:]
-[NSMutableDictionary(WebNSDictionaryExtras) _webkit_setBool:forKey:]
-[WebPreferences setUserStyleSheetLocation:]
-[WebPreferences _setStringValue:forKey:]
-[WebPreferences _stringValueForKey:]
-[WebView initWithCoder:]
__ZL32needsWebViewInitThreadWorkaroundv
-[WebView setNextKeyView:]
-[WebView mainFrame]
+[WebViewPrivate initialize]
-[WebViewPrivate .cxx_construct]
-[WebViewPrivate init]
__ZN3WTF6OwnPtrIN7WebCore27AlternativeTextUIControllerEEaSERKNS_10PassOwnPtrIS2_EE
__ZN3WTF10PassOwnPtrIN7WebCore27AlternativeTextUIControllerEED2Ev
-[WebPreferences initWithCoder:]
-[WebPreferences dealloc]
-[WebView(WebPrivate) _commonInitializationWithFrameName:groupName:]
+[WebView(WebFileInternal) _cacheModelChangedNotification:]
-[WebPreferences cacheModel]
+[WebView(WebFileInternal) _didSetCacheModel]
+[WebView(WebFileInternal) _setCacheModel:]
_WKCopyFoundationCacheDirectory
_cfURLCache
_WebMemorySize
_initCapabilities
_WebVolumeFreeSize
-[WebPreferences(WebPrivate) willAddToWebView]
-[WebFrameView initWithFrame:]
-[WebDynamicScrollBarsView initWithFrame:]
-[WebClipView .cxx_construct]
-[WebClipView initWithFrame:]
-[WebClipView visibleRect]
-[WebDynamicScrollBarsView(WebInternal) tile]
+[WebDynamicScrollBarsView _verticalScrollerClass]
-[WebFrameView visibleRect]
-[WebFrameView webFrame]
__ZN21WebPlatformStrategies21initializeIfNecessaryEv
+[WebDatabaseManager sharedWebDatabaseManager]
-[WebDatabaseManager init]
__ZN21WebPlatformStrategies22createDatabaseStrategyEv
__ZN24WebDatabaseManagerClient30sharedWebDatabaseManagerClientEv
__Z34WebKitInitializeStorageIfNecessaryv
+[WebStorageManager _storageDirectoryPath]
__ZL26initializeLocalStoragePathv
__ZN23WebStorageTrackerClient29sharedWebStorageTrackerClientEv
+[NSString(WebKitExtras) _webkit_localCacheDirectoryWithBundleIdentifier:]
__ZN15WebChromeClientC1EP7WebView
__ZN20WebContextMenuClientC1EP7WebView
__ZN15WebEditorClientC1EP7WebView
__ZN13WebDragClientC1EP7WebView
__ZN18WebInspectorClientC1EP7WebView
__ZN18WebInspectorClientC2EP7WebView
-[WebNodeHighlighter initWithInspectedWebView:]
__ZN24WebAlternativeTextClientC1EP7WebView
__ZN15CorrectionPanelC1Ev
__ZNK7WebCore20InspectorStateClient29supportsInspectorStateUpdatesEv
__ZN7WebCore12ChromeClient24incrementActivePageCountEv
__ZN20WebGeolocationClientC1EP7WebView
__ZN21WebNotificationClientC1EP7WebView
-[WebView preferences]
-[WebPreferences(WebPrivate) _localStorageDatabasePath]
+[WebFrame(WebInternal) _createMainFrameWithPage:frameName:frameView:]
+[WebFrame(WebInternal) _createFrameWithPage:frameName:frameView:ownerElement:]
__ZNK7WebCore12ChromeClient19isEmptyChromeClientEv
-[WebFrame(WebInternal) _initWithWebFrameView:webView:]
-[WebFramePrivate .cxx_construct]
+[WebView(WebViewInternal) shouldIncludeInWebKitStatistics]
-[WebFramePrivate setWebFrameView:]
-[WebFrameView(WebInternal) _setWebFrame:]
-[WebFrame(WebInternal) _isIncludedInWebKitStatistics]
__ZN20WebFrameLoaderClientC1EP8WebFrame
__ZN20WebFrameLoaderClient20createDocumentLoaderERKN7WebCore15ResourceRequestERKNS0_14SubstituteDataE
__ZN20WebDocumentLoaderMacC1ERKN7WebCore15ResourceRequestERKNS0_14SubstituteDataE
+[WebDataSource(WebPrivate) initialize]
-[WebDataSource(WebInternal) _initWithDocumentLoader:]
-[WebDataSource webFrame]
__Z10getWebViewP8WebFrame
__ZN20WebDocumentLoaderMac13setDataSourceEP13WebDataSourceP7WebView
-[WebView resourceLoadDelegate]
-[WebView downloadDelegate]
__ZN20WebDocumentLoaderMac13attachToFrameEv
__ZN20WebFrameLoaderClient25setMainFrameDocumentReadyEb
-[WebView(WebPendingPublic) setMainFrameDocumentReady:]
__ZN20WebFrameLoaderClient17setCopiesOnScrollEv
-[WebFrameView(WebInternal) _scrollView]
__ZN20WebFrameLoaderClient31prepareForDataSourceReplacementEv
-[WebFrame(WebInternal) _dataSource]
__ZN20WebFrameLoaderClient31transitionToCommittedForNewPageEv
__ZNK20WebDocumentLoaderMac10dataSourceEv
-[WebDataSource(WebPrivate) _responseMIMEType]
-[WebDataSource response]
-[WebFrameView(WebInternal) _viewClassForMIMEType:]
-[WebFrameView(WebInternal) _webView]
-[WebFrame webView]
-[WebPreferences arePlugInsEnabled]
+[WebFrameView(WebInternal) _viewClassForMIMEType:allowingPlugins:]
+[WebView(WebPrivate) _viewClass:andRepresentationClass:forMIMEType:allowingPlugins:]
+[WebFrameView(WebInternal) _viewTypesAllowImageTypeOmission:]
+[WebHTMLView initialize]
+[WebHTMLView(WebPrivate) _selectionPasteboardTypes]
+[WebHTMLView(WebPrivate) _insertablePasteboardTypes]
+[WebHTMLView(WebPrivate) supportedNonImageMIMETypes]
+[WebHTMLRepresentation supportedNonImageMIMETypes]
__ZL19newArrayWithStringsRKN3WTF7HashSetINS_6StringENS_10StringHashENS_10HashTraitsIS1_EEEE
+[WebPDFView supportedMIMETypes]
+[WebPDFRepresentation supportedMIMETypes]
+[WebPDFRepresentation postScriptMIMETypes]
-[NSDictionary(WebNSDictionaryExtras) _webkit_objectForMIMEType:]
+[WebDataSource(WebInternal) _repTypesAllowImageTypeOmission:]
+[WebHTMLView(WebPrivate) unsupportedTextMIMETypes]
+[WebHTMLRepresentation unsupportedTextMIMETypes]
__Z4coreP8WebFrame
-[WebView removePluginInstanceViewsFor:]
-[WebFrameView(WebInternal) _makeDocumentViewForDataSource:]
-[WebDataSource representation]
-[WebHTMLView initWithFrame:]
+[WebHTMLViewPrivate initialize]
-[WebHTMLViewPrivate .cxx_construct]
-[WebPluginController initWithDocumentView:]
-[WebFrameView(WebInternal) _setDocumentView:]
__Z4coreP7WebView
-[WebView(WebPrivate) page]
-[WebDynamicScrollBarsView(WebInternal) setSuppressLayout:]
-[WebHTMLView viewWillMoveToSuperview:]
-[WebHTMLView(WebHTMLViewFileInternal) _removeSuperviewObservers]
-[WebHTMLView setNeedsDisplayInRect:]
__ZL21setNeedsDisplayInRectP6NSViewP13objc_selector6CGRect
-[WebHTMLView visibleRect]
-[WebClipView hasAdditionalClip]
-[WebHTMLView isFlipped]
-[WebHTMLView viewDidMoveToSuperview]
-[WebHTMLView addSuperviewObservers]
-[WebHTMLView(WebPrivate) _isUsingAcceleratedCompositing]
-[WebHTMLView _invalidateGStatesForTree]
-[WebDynamicScrollBarsView(WebInternal) reflectScrolledClipView:]
-[WebDynamicScrollBarsView(WebInternal) updateScrollers]
-[WebDynamicScrollBarsView(WebInternal) adjustForScrollOriginChange]
__ZNK15WebChromeClient25shouldPaintEntireContentsEv
__Z3kitPN7WebCore5FrameE
__ZN7WebCore17FrameLoaderClient24isEmptyFrameLoaderClientEv
-[WebFrame frameView]
-[WebFrameView documentView]
-[WebFrame(WebInternal) _updateBackgroundAndUpdatesWhileOffscreen]
-[WebView drawsBackground]
-[WebView(WebPrivate) backgroundColor]
-[WebView shouldUpdateWhileOffscreen]
-[WebFrameView(WebInternal) _install]
-[WebDynamicScrollBarsView(WebInternal) scrollingModes:vertical:]
-[WebHTMLView setDataSource:]
-[WebPluginController setDataSource:]
-[WebHTMLView addMouseMovedObserver]
-[WebHTMLView(WebHTMLViewFileInternal) _isTopHTMLView]
-[WebHTMLView(WebHTMLViewFileInternal) _topHTMLView]
-[WebDataSource(WebInternal) _webView]
-[WebHTMLView(WebHTMLViewFileInternal) _webView]
-[WebView(WebPrivate) _dashboardBehavior:]
-[WebDataSource(WebInternal) _documentLoader]
-[WebDataSource pageTitle]
__ZNK7WebCore17FrameLoaderClient29shouldAlwaysUsePluginDocumentERKN3WTF6StringE
__ZNK20WebFrameLoaderClient11hasHTMLViewEv
__ZN21WebPlatformStrategies20createLoaderStrategyEv
_WKInitializeMaximumHTTPConnectionCountPerHost
__ZNK15WebChromeClient26allowedCompositingTriggersEv
__ZNK7WebCore12ChromeClient35dispatchViewportPropertiesDidChangeERKNS_17ViewportArgumentsE
__ZN15WebChromeClient28numWheelEventHandlersChangedEj
__ZN7WebCore17FrameLoaderClient11allowScriptEb
__ZN7WebCore17FrameLoaderClient12allowPluginsEb
__ZN20WebFrameLoaderClient15finishedLoadingEPN7WebCore14DocumentLoaderE
-[WebDataSource(WebInternal) _finishedLoading]
__ZNK20WebFrameLoaderClient17overrideMediaTypeEv
-[WebView mediaStyle]
__ZN20WebFrameLoaderClient24documentElementAvailableEv
__ZN7WebCore17FrameLoaderClient22dispatchWillInsertBodyEv
__ZN20WebFrameLoaderClient18frameLoadCompletedEv
__ZN20WebFrameLoaderClient21forceLayoutForNonHTMLEv
-[WebDataSource(WebInternal) _isDocumentHTML]
+[WebView canShowMIMETypeAsHTML:]
+[WebFrameView(WebInternal) _canShowMIMETypeAsHTML:]
__ZN20WebFrameLoaderClient23createNetworkingContextEv
-[WebView _realZoomMultiplier]
-[WebView _realZoomMultiplierIsTextOnly]
-[WebView _setZoomMultiplier:isTextOnly:]
-[WebView(WebViewInternal) _mainCoreFrame]
-[WebView(WebPendingPublic) scheduleInRunLoop:forMode:]
-[WebView(AllWebViews) _addToAllWebViewsSet]
-[WebView setGroupName:]
-[WebView(WebPrivate) _registerDraggedTypes]
-[WebView(WebPrivate) _isViewVisible]
-[WebView(WebPrivate) _setVisibilityState:isInitialState:]
-[WebView(WebPrivate) _preferencesChanged:]
-[WebPreferences(WebPrivate) _useSiteSpecificSpoofing]
-[WebPreferences cursiveFontFamily]
-[WebPreferences defaultFixedFontSize]
-[WebPreferences defaultFontSize]
-[WebPreferences defaultTextEncodingName]
-[WebPreferences(WebPrivate) usesEncodingDetector]
-[WebPreferences fantasyFontFamily]
-[WebPreferences fixedFontFamily]
-[WebPreferences(WebPrivate) screenFontSubstitutionEnabled]
_WKExecutableWasLinkedOnOrBeforeMountainLion
-[WebPreferences(WebPrivate) _forceFTPDirectoryListings]
-[WebPreferences(WebPrivate) _ftpDirectoryTemplatePath]
-[WebPreferences isJavaEnabled]
-[WebPreferences isJavaScriptEnabled]
-[WebPreferences(WebPrivate) isWebSecurityEnabled]
-[WebPreferences(WebPrivate) allowUniversalAccessFromFileURLs]
-[WebPreferences(WebPrivate) allowFileAccessFromFileURLs]
-[WebPreferences javaScriptCanOpenWindowsAutomatically]
-[WebPreferences minimumFontSize]
-[WebPreferences minimumLogicalFontSize]
-[WebPreferences(WebPrivate) pictographFontFamily]
-[WebPreferences(WebPrivate) databasesEnabled]
-[WebPreferences(WebPrivate) localStorageEnabled]
-[WebPreferences(WebPrivate) experimentalNotificationsEnabled]
-[WebPreferences privateBrowsingEnabled]
__ZN25WebFrameNetworkingContext29destroyPrivateBrowsingSessionEv
-[WebPreferences sansSerifFontFamily]
-[WebPreferences serifFontFamily]
-[WebPreferences standardFontFamily]
-[WebPreferences loadsImagesAutomatically]
-[WebPreferences(WebPrivate) loadsSiteIconsIgnoringImageLoadingPreference]
-[WebPreferences shouldPrintBackgrounds]
-[WebPreferences(WebPrivate) textAreasAreResizable]
-[WebPreferences(WebPrivate) shrinksStandaloneImagesToFit]
-[WebPreferences(WebPrivate) editableLinkBehavior]
__Z4core26WebKitEditableLinkBehavior
-[WebPreferences(WebPrivate) textDirectionSubmenuInclusionBehavior]
__Z4core40WebTextDirectionSubmenuInclusionBehavior
-[WebPreferences(WebPrivate) isDOMPasteAllowed]
-[WebView(WebPrivate) usesPageCache]
-[WebPreferences usesPageCache]
-[WebPreferences(WebPrivate) pageCacheSupportsPlugins]
-[WebPreferences(WebPrivate) _backForwardCacheExpirationInterval]
-[WebPreferences _floatValueForKey:]
-[WebPreferences(WebPrivate) showsURLsInToolTips]
-[WebPreferences(WebPrivate) showsToolTipOverTruncatedText]
-[WebPreferences(WebPrivate) developerExtrasEnabled]
-[WebPreferences(WebPrivate) authorAndUserStylesEnabled]
-[WebPreferences(WebPrivate) applicationChromeModeEnabled]
-[WebPreferences userStyleSheetEnabled]
-[WebView(WebPrivate) _needsAdobeFrameReloadingQuirk]
_WKAppVersionCheckLessThan
-[WebView(WebPrivate) _needsLinkElementTextCSSQuirk]
-[WebView(WebPrivate) _needsKeyboardEventDisambiguationQuirks]
-[WebPreferences(WebPrivate) webArchiveDebugModeEnabled]
-[WebPreferences(WebPrivate) localFileContentSniffingEnabled]
-[WebPreferences(WebPrivate) offlineWebApplicationCacheEnabled]
-[WebPreferences(WebPrivate) javaScriptCanAccessClipboard]
-[WebPreferences(WebPrivate) isXSSAuditorEnabled]
-[WebPreferences(WebPrivate) isDNSPrefetchingEnabled]
-[WebPreferences(WebPrivate) acceleratedCompositingEnabled]
-[WebPreferences(WebPrivate) acceleratedDrawingEnabled]
-[WebPreferences(WebPrivate) canvasUsesAcceleratedDrawing]
-[WebPreferences(WebPrivate) showDebugBorders]
-[WebPreferences(WebPrivate) showRepaintCounter]
-[WebPreferences(WebPrivate) webGLEnabled]
-[WebPreferences(WebPrivate) accelerated2dCanvasEnabled]
-[WebPreferences(WebPrivate) isFrameFlatteningEnabled]
-[WebPreferences(WebPrivate) isSpatialNavigationEnabled]
-[WebPreferences(WebPrivate) paginateDuringLayoutEnabled]
-[WebPreferences(WebPrivate) cssRegionsEnabled]
-[WebPreferences(WebPrivate) cssCompositingEnabled]
-[WebPreferences(WebPrivate) webAudioEnabled]
-[WebPreferences(WebPrivate) seamlessIFramesEnabled]
-[WebPreferences(WebPrivate) fullScreenEnabled]
-[WebPreferences(WebPrivate) asynchronousSpellCheckingEnabled]
-[WebPreferences(WebPrivate) hyperlinkAuditingEnabled]
-[WebView(WebPrivate) _needsPreHTML5ParserQuirks]
-[WebPreferences(WebPrivate) usePreHTML5ParserQuirks]
-[WebView(WebPrivate) _needsUnrestrictedGetMatchedCSSRules]
-[WebView(WebPrivate) interactiveFormValidationEnabled]
-[WebView(WebPrivate) validationMessageTimerMagnification]
-[WebPreferences(WebPrivate) isAVFoundationEnabled]
-[WebPreferences(WebPrivate) isQTKitEnabled]
-[WebPreferences(WebPrivate) mediaPlaybackRequiresUserGesture]
-[WebPreferences(WebPrivate) mediaPlaybackAllowsInline]
-[WebPreferences suppressesIncrementalRendering]
-[WebPreferences(WebPrivate) regionBasedColumnsEnabled]
-[WebPreferences(WebPrivate) backspaceKeyNavigationEnabled]
-[WebPreferences(WebPrivate) wantsBalancedSetDefersLoadingBehavior]
-[WebPreferences(WebPrivate) mockScrollbarsEnabled]
-[WebPreferences(WebPrivate) shouldDisplaySubtitles]
-[WebPreferences(WebPrivate) shouldDisplayCaptions]
-[WebPreferences(WebPrivate) shouldDisplayTextDescriptions]
-[WebPreferences(WebPrivate) shouldRespectImageOrientation]
-[WebView(WebPrivate) _needsIsLoadingInAPISenseQuirk]
-[WebPreferences(WebPrivate) requestAnimationFrameEnabled]
-[WebPreferences(WebPrivate) diagnosticLoggingEnabled]
-[WebPreferences(WebPrivate) lowPowerVideoAudioBufferSizeEnabled]
-[WebPreferences(WebPrivate) storageBlockingPolicy]
-[WebPreferences(WebPrivate) plugInSnapshottingEnabled]
-[WebPreferences(WebPrivate) hiddenPageDOMTimerThrottlingEnabled]
-[WebPreferences(WebPrivate) hiddenPageCSSAnimationSuspensionEnabled]
-[WebPreferences(WebPrivate) incrementalRenderingSuppressionTimeoutInSeconds]
-[WebPreferences(WebPrivate) applicationCacheDefaultOriginQuota]
-[WebPreferences _longLongValueForKey:]
+[WebApplicationCache setDefaultOriginQuota:]
-[WebPreferences(WebPrivate) zoomsTextOnly]
-[WebPreferences(WebPrivate) _postPreferencesChangedAPINotification]
-[WebView setPreferences:]
-[WebPreferences identifier]
+[WebPreferences(WebPrivate) _removeReferenceForIdentifier:]
-[WebPreferences userStyleSheetLocation]
-[NSString(WebNSURLExtras) _webkit_looksLikeAbsoluteURL]
-[NSString(WebNSURLExtras) _webkit_rangeOfURLScheme]
-[WebPreferences(WebPrivate) didRemoveFromWebView]
+[WebView(WebFileInternal) _preferencesRemovedNotification:]
+[WebView(WebFileInternal) _cacheModel]
+[WebView(WebFileInternal) _maxCacheModelInAnyInstance]
-[WebView viewWillMoveToWindow:]
_WKSetNSWindowShouldPostEventNotifications
-[WebView removeWindowObservers]
-[WebView addWindowObserversForWindow:]
_WKWindowWillOrderOnScreenNotification
_WKWindowWillOrderOffScreenNotification
-[WebHTMLView viewWillMoveToWindow:]
-[WebHTMLView(WebHTMLViewFileInternal) _removeMouseMovedObserverUnconditionally]
-[WebHTMLView(WebHTMLViewFileInternal) _removeWindowObservers]
-[WebHTMLView(WebPrivate) _pluginController]
-[WebPluginController stopAllPlugins]
-[WebHTMLView viewDidMoveToWindow]
-[WebHTMLView(WebPrivate) _stopAutoscrollTimer]
-[WebHTMLView addWindowObservers]
-[WebHTMLView(WebPrivate) _frameOrBoundsChanged]
-[WebPluginController startAllPlugins]
-[WebFrameView viewDidMoveToWindow]
-[WebView viewDidMoveToWindow]
-[WebView(WebFileInternal) _deviceScaleFactor]
-[WebView hostWindow]
-[WebView(WebPrivate) _updateActiveState]
-[WebView(WebPrivate) _updateVisibilityState]
-[WebHTMLView(WebInternal) _needsLayout]
-[WebHTMLView(WebInternal) _frame]
-[WebFrame(WebInternal) _needsLayout]
-[WebHTMLView layout]
-[WebHTMLView layoutToMinimumPageWidth:height:originalPageWidth:originalPageHeight:maximumShrinkRatio:adjustingViewSize:]
-[WebDynamicScrollBarsView(WebInternal) setScrollBarsSuppressed:repaintOnUnsuppress:]
-[WebDynamicScrollBarsView(WebInternal) setScrollingModes:vertical:andLock:]
-[WebHTMLView setNeedsLayout:]
__ZN7WebCore17FrameLoaderClient17dispatchDidLayoutEv
__ZNK15WebChromeClient19contentsSizeChangedEPN7WebCore5FrameERKNS0_7IntSizeE
__ZNK7WebCore12ChromeClient13layoutUpdatedEPNS_5FrameE
-[WebFrameView setFrameSize:]
-[WebFrameView(WebInternal) _frameSizeChanged]
-[WebFrameView(WebFrameViewFileInternal) _web_frame]
-[WebFrame(WebInternal) _getVisibleRect:]
-[WebFrameView isOpaque]
-[WebView windowScriptObject]
__ZN20WebFrameLoaderClient35dispatchDidClearWindowObjectInWorldEPN7WebCore15DOMWrapperWorldE
__Z42WebViewGetFrameLoadDelegateImplementationsP7WebView
-[WebView(WebPendingPublic) scriptDebugDelegate]
-[WebView _windowDidChangeScreen:]
-[WebView doWindowDidChangeScreen]
-[WebView(WebViewEditing) isEditable]
-[WebHTMLView(WebNSTextInputSupport) inputContext]
-[WebFrameView setAllowsScrolling:]
-[WebView setPolicyDelegate:]
-[WebView setUIDelegate:]
-[WebView setFrameLoadDelegate:]
-[WebView(WebPrivate) _needsFrameLoadDelegateRetainQuirk]
-[WebView(WebPrivate) _cacheFrameLoadDelegateImplementations]
-[WebView setApplicationNameForUserAgent:]
-[WebFrame loadHTMLString:baseURL:]
-[WebFrame _loadHTMLString:baseURL:unreachableURL:]
-[WebFrame _loadData:MIMEType:textEncodingName:baseURL:unreachableURL:]
__ZN7WebCore19ResourceRequestBaseC2ERKNS_4KURLENS_26ResourceRequestCachePolicyE
_WKCFURLRequestAllowAllPostCaching
__ZN20WebFrameLoaderClient17cancelPolicyCheckEv
__ZN20WebFrameLoaderClient39dispatchDecidePolicyForNavigationActionEMN7WebCore13PolicyCheckerEFvNS0_12PolicyActionEERKNS0_16NavigationActionERKNS0_15ResourceRequestEN3WTF10PassRefPtrINS0_9FormStateEEE
-[WebView(WebPrivate) _policyDelegateForwarder]
+[WebDefaultPolicyDelegate sharedPolicyDelegate]
-[_WebSafeForwarder initWithTarget:defaultTarget:]
__ZNK20WebFrameLoaderClient16actionDictionaryERKN7WebCore16NavigationActionEN3WTF10PassRefPtrINS0_9FormStateEEE
__ZN20WebFrameLoaderClient19setUpPolicyListenerEMN7WebCore13PolicyCheckerEFvNS0_12PolicyActionEE
+[WebFramePolicyListener initialize]
-[WebFramePolicyListener .cxx_construct]
-[WebFramePolicyListener initWithFrame:policyFunction:]
-[_WebSafeForwarder methodSignatureForSelector:]
-[_WebSafeForwarder forwardInvocation:]
-[WebFrame name]
-[WebFramePolicyListener use]
-[WebFramePolicyListener receivedPolicyDecision:]
__ZNK20WebFrameLoaderClient16canHandleRequestERKN7WebCore15ResourceRequestE
+[WebView(WebPrivate) _canHandleRequest:forMainFrame:]
__ZN15WebChromeClient30canRunBeforeUnloadConfirmPanelEv
-[WebView UIDelegate]
-[WebFramePolicyListener invalidate]
__ZN20WebFrameLoaderClient22provisionalLoadStartedEv
__ZN20WebFrameLoaderClient27willChangeEstimatedProgressEv
-[WebView(WebPrivate) _willChangeValueForKey:]
-[WebView(WebPrivate) observationInfo]
__ZN20WebFrameLoaderClient31postProgressStartedNotificationEv
__ZN20WebFrameLoaderClient26didChangeEstimatedProgressEv
-[WebView(WebPrivate) _didChangeValueForKey:]
__ZN20WebFrameLoaderClient31dispatchDidStartProvisionalLoadEv
-[WebView(WebPrivate) _didStartProvisionalLoadForFrame:]
-[WebView(WebPrivate) _willChangeBackForwardKeys]
-[WebFrame DOMDocument]
__ZNK20WebFrameLoaderClient32representationExistsForURLSchemeERKN3WTF6StringE
+[WebView(WebPrivate) _representationExistsForURLScheme:]
__ZN20WebFrameLoaderClient32assignIdentifierToInitialRequestEmPN7WebCore14DocumentLoaderERKNS0_15ResourceRequestE
__Z45WebViewGetResourceLoadDelegateImplementationsP7WebView
-[WebView(WebViewInternal) _addObject:forIdentifier:]
__ZN20WebFrameLoaderClient23dispatchWillSendRequestEPN7WebCore14DocumentLoaderEmRNS0_15ResourceRequestERKNS0_16ResourceResponseE
__ZL36applyAppleDictionaryApplicationQuirkP20WebFrameLoaderClientRKN7WebCore15ResourceRequestE
__ZN20WebDocumentLoaderMac17increaseLoadCountEm
__ZN3WTF9HashTableImmNS_17IdentityExtractorENS_7IntHashImEENS_10HashTraitsImEES5_E3addINS_22IdentityHashTranslatorIS3_EEmmEENS_18HashTableAddResultINS_17HashTableIteratorImmS1_S3_S5_S5_EEEERKT0_RKT1_
-[WebFramePolicyListener dealloc]
-[WebFramePolicyListener .cxx_destruct]
__ZN7WebCore16FrameLoadRequestD2Ev
__ZN7WebCore14SubstituteDataD2Ev
__ZN7WebCore19ResourceRequestBaseD2Ev
-[WebView textSizeMultiplier]
-[WebView(WebIBActions) canMakeTextLarger]
-[WebView _canZoomIn:]
-[WebView _zoomMultiplier:]
-[WebView(WebIBActions) canMakeTextSmaller]
-[WebView _canZoomOut:]
-[WebFrame childFrames]
__ZN20WebFrameLoaderClient14cancelledErrorERKN7WebCore15ResourceRequestE
+[NSError(WebKitExtras) _webKitErrorWithDomain:code:URL:]
+[NSError(WebKitExtras) _registerWebKitErrors]
_registerErrors
_WebLocalizedStringInternal
+[NSError(WebKitExtras) _webkit_addErrorsWithCodesAndDescriptions:inDomain:]
+[NSError(WebKitExtras) _webkit_errorWithDomain:code:URL:]
-[NSError(WebKitExtras) _webkit_initWithDomain:code:URL:]
__ZN20WebFrameLoaderClient22dispatchDidFailLoadingEPN7WebCore14DocumentLoaderEmRKNS0_13ResourceErrorE
-[WebView(WebViewInternal) _removeObjectForIdentifier:]
__ZN3WTF9HashTableImNS_12KeyValuePairImNS_9RetainPtrIP11objc_objectEEEENS_24KeyValuePairKeyExtractorIS6_EENS_7IntHashImEENS_18HashMapValueTraitsINS_10HashTraitsImEENSC_IS5_EEEESD_E16lookupForWritingINS_22IdentityHashTranslatorISA_EEmEENSt3__14pairIPS6_bEERKT0_
__ZN3WTF9HashTableImNS_12KeyValuePairImNS_9RetainPtrIP11objc_objectEEEENS_24KeyValuePairKeyExtractorIS6_EENS_7IntHashImEENS_18HashMapValueTraitsINS_10HashTraitsImEENSC_IS5_EEEESD_E3addINS_17HashMapTranslatorISF_SA_EEmS5_EENS_18HashTableAddResultINS_17HashTableIteratorImS6_S8_SA_SF_SD_EEEERKT0_RKT1_
__ZN3WTF9HashTableImNS_12KeyValuePairImNS_9RetainPtrIP11objc_objectEEEENS_24KeyValuePairKeyExtractorIS6_EENS_7IntHashImEENS_18HashMapValueTraitsINS_10HashTraitsImEENSC_IS5_EEEESD_E6lookupINS_22IdentityHashTranslatorISA_EEmEEPS6_RKT0_
__ZN3WTF9HashTableImNS_12KeyValuePairImNS_9RetainPtrIP11objc_objectEEEENS_24KeyValuePairKeyExtractorIS6_EENS_7IntHashImEENS_18HashMapValueTraitsINS_10HashTraitsImEENSC_IS5_EEEESD_E6rehashEi
__ZN20WebDocumentLoaderMac17decreaseLoadCountEm
__ZN3WTF9HashTableImmNS_17IdentityExtractorENS_7IntHashImEENS_10HashTraitsImEES5_E6lookupINS_22IdentityHashTranslatorIS3_EEmEEPmRKT0_
__ZN20WebFrameLoaderClient20setMainDocumentErrorEPN7WebCore14DocumentLoaderERKNS0_13ResourceErrorE
-[WebDataSource(WebInternal) _setMainDocumentError:]
__ZN20WebFrameLoaderClient14shouldFallBackERKN7WebCore13ResourceErrorE
__ZN20WebFrameLoaderClient30dispatchDidFailProvisionalLoadERKN7WebCore13ResourceErrorE
-[WebView(WebPrivate) _didFailProvisionalLoadWithError:forFrame:]
-[WebView(WebPrivate) _didChangeBackForwardKeys]
__Z21CallFrameLoadDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS1_S0_S0_
__ZN20WebDocumentLoaderMac15detachFromFrameEv
-[WebDataSource dealloc]
__ZN20WebDataSourcePrivateD2Ev
__ZN20WebDocumentLoaderMac16detachDataSourceEv
__ZN20WebFrameLoaderClient39postProgressEstimateChangedNotificationEv
__ZN20WebFrameLoaderClient32postProgressFinishedNotificationEv
__ZN20WebDocumentLoaderMacD0Ev
-[WebView _windowChangedKeyState]
-[WebHTMLView windowDidBecomeKey:]
-[WebHTMLView(WebNSTextInputSupport) _updateSecureInputState]
-[WebView _windowWillOrderOnScreen:]
-[WebHTMLView windowWillOrderOnScreen:]
-[WebHTMLView(WebPrivate) viewWillDraw]
-[WebHTMLView(WebInternal) _web_updateLayoutAndStyleIfNeededRecursive]
-[WebFrameView drawRect:]
-[WebHTMLView(WebPrivate) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:]
-[WebHTMLView(WebPrivate) _setAsideSubviews]
-[WebHTMLView drawRect:]
-[WebHTMLView(WebPrivate) _restoreSubviews]
-[WebHTMLView drawSingleRect:]
-[WebClipView setAdditionalClip:]
-[WebHTMLView(WebPrivate) _transparentBackground]
-[WebFrame(WebInternal) _drawRect:contentsOnly:]
-[WebFrame(WebInternal) _shouldFlattenCompositingLayers:]
_WKCGContextIsBitmapContext
-[WebHTMLView(WebInternal) _web_isDrawingIntoLayer]
-[WebView(WebPrivate) _includesFlattenedCompositingLayersWhenDrawingToBitmap]
-[WebView(WebPrivate) _UIDelegateForwarder]
+[WebDefaultUIDelegate sharedUIDelegate]
-[WebDefaultUIDelegate webView:didDrawRect:]
-[WebView currentNodeHighlight]
-[WebClipView resetAdditionalClip]
__Z14CallUIDelegateP7WebViewP13objc_selectorP11objc_object
__ZN7WebCore14SecurityOriginD2Ev
-[WebView initWithFrame:frameName:groupName:]
-[WebView(WebPrivate) _initWithFrame:frameName:groupName:usesDocumentViews:]
-[WebView setMaintainsBackForwardList:]
-[WebView setResourceLoadDelegate:]
-[WebView(WebPrivate) _cacheResourceLoadDelegateImplementations]
-[WebPreferences(WebPrivate) setAuthorAndUserStylesEnabled:]
-[WebPreferences(WebPrivate) setDatabasesEnabled:]
-[WebPreferences setJavaScriptEnabled:]
-[WebPreferences setLoadsImagesAutomatically:]
-[WebPreferences(WebPrivate) setLocalStorageEnabled:]
-[WebPreferences setMinimumFontSize:]
-[WebPreferences(WebPrivate) setStorageBlockingPolicy:]
-[WebPreferences(WebPrivate) setNotificationsEnabled:]
-[WebView setDrawsBackground:]
-[WebView(WebViewNotification) _setNotificationProvider:]
-[WebFrame loadRequest:]
__ZN7WebCore19ResourceRequestBaseC2Ev
_WKCachePartitionKey
_init_kCFURLCachePartitionKey
_CFNetworkLibrary
__ZN7WebCore14SubstituteDataC2Ev
__Z21CallFrameLoadDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS1_S0_
-[WebFrame provisionalDataSource]
-[WebDataSource request]
__ZN7WebCore17FrameLoaderClient27dispatchWillRequestResourceEPNS_21CachedResourceRequestE
__ZN20WebFrameLoaderClient9userAgentERKN7WebCore4KURLE
-[WebView _userAgentString]
+[WebView(WebPrivate) _standardUserAgentWithApplicationName:]
-[WebView(WebViewInternal) _objectForIdentifier:]
__ZNK3WTF7HashMapImNS_9RetainPtrIP11objc_objectEENS_7IntHashImEENS_10HashTraitsImEENS7_IS4_EEE3getERKm
__Z24CallResourceLoadDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS1_S0_S0_S0_S0_
__ZNK7WebCore22FrameNetworkingContext7isValidEv
__ZNK25WebFrameNetworkingContext14storageSessionEv
__ZN20WebFrameLoaderClient26shouldUseCredentialStorageEPN7WebCore14DocumentLoaderEm
__ZNK25WebFrameNetworkingContext23needsSiteSpecificQuirksEv
__ZNK25WebFrameNetworkingContext26sourceApplicationAuditDataEv
__Z3kitPN7WebCore4PageE
-[WebView(WebPrivate) _sourceApplicationAuditData]
__ZNK25WebFrameNetworkingContext21scheduledRunLoopPairsEv
__kCFURLCachePartitionKeyFunction
-[WebView _windowVisibilityChanged:]
__ZL9setCursorP8NSWindowP13objc_selector7CGPoint
-[NSWindow(BorderViewAccess) _web_borderView]
+[WebBaseNetscapePluginView initialize]
_WKSendUserChangeNotifications
-[WebHTMLView mouseMovedNotification:]
-[WebHTMLView(WebPrivate) _updateMouseoverWithEvent:]
_WKCreateMemoryStatusPressureCriticalDispatchOnMainQueue
__ZN20WebFrameLoaderClient26dispatchDidReceiveResponseEPN7WebCore14DocumentLoaderEmRKNS0_16ResourceResponseE
__ZNK20WebFrameLoaderClient15canShowMIMETypeERKN3WTF6StringE
-[WebView _canShowMIMEType:]
+[WebView _canShowMIMEType:allowingPlugins:]
__ZN20WebFrameLoaderClient31dispatchDidReceiveContentLengthEPN7WebCore14DocumentLoaderEmi
__ZN20WebFrameLoaderClient17dispatchWillCloseEv
__ZN20WebFrameLoaderClient18makeRepresentationEPN7WebCore14DocumentLoaderE
-[WebDataSource(WebInternal) _makeRepresentation]
+[WebDataSource(WebFileInternal) _representationClassForMIMEType:allowingPlugins:]
-[WebHTMLRepresentation init]
-[WebDataSource(WebFileInternal) _setRepresentation:]
-[WebHTMLRepresentation setDataSource:]
__ZN15WebEditorClient23clearUndoRedoOperationsEv
__ZN15WebChromeClient16setStatusbarTextERKN3WTF6StringE
__ZN20WebFrameLoaderClient13committedLoadEPN7WebCore14DocumentLoaderEPKci
-[WebDataSource(WebInternal) _receivedData:]
-[WebHTMLRepresentation receivedData:withDataSource:]
-[WebFrame(WebInternal) _commitData:]
__ZN20WebFrameLoaderClient21dispatchDidCommitLoadEv
-[WebView(WebPrivate) _didCommitLoadForFrame:]
__ZN7WebCore17FrameLoaderClient29dispatchGlobalObjectAvailableEPNS_15DOMWrapperWorldE
-[WebHTMLView dataSourceUpdated:]
__ZN20WebFrameLoaderClient24dispatchDidFinishLoadingEPN7WebCore14DocumentLoaderEm
-[WebHTMLRepresentation finishedLoadingWithDataSource:]
__ZN20WebFrameLoaderClient29dispatchDidFinishDocumentLoadEv
__ZN20WebFrameLoaderClient29dispatchDidHandleOnloadEventsEv
_WKGetGlyphTransformedAdvances
__ZN20WebFrameLoaderClient17dispatchDidLayoutEj
__ZN20WebFrameLoaderClient21dispatchDidFinishLoadEv
-[WebView(WebPrivate) _didFinishLoadForFrame:]
-[WebHTMLView isOpaque]
_WKSetCGFontRenderingMode
-[WebFrame(WebPrivate) accessibilityRoot]
-[WebFrameView(WebPrivate) _contentView]
-[WebView elementAtPoint:]
-[WebView _elementAtWindowPoint:]
-[WebView(WebFileInternal) _frameViewAtWindowPoint:]
-[WebHTMLView(WebPrivate) hitTest:]
-[WebHTMLView(WebDocumentInternalProtocols) elementAtPoint:]
-[WebHTMLView(WebDocumentInternalProtocols) elementAtPoint:allowShadowContent:]
+[WebElementDictionary initialize]
-[WebElementDictionary initWithHitTestResult:]
+[WebElementDictionary initializeLookupTable]
-[WebElementDictionary objectForKey:]
-[WebElementDictionary _domNode]
-[WebElementDictionary _absoluteLinkURL]
__ZNK15WebChromeClient18platformPageClientEv
__ZN15WebChromeClient9setCursorERKN7WebCore6CursorE
__ZN15WebChromeClient23mouseDidMoveOverElementERKN7WebCore13HitTestResultEj
-[WebView(WebPrivate) _mouseDidMoveOverElement:modifierFlags:]
__Z14CallUIDelegateP7WebViewP13objc_selectorP11objc_objectm
-[WebElementDictionary dealloc]
__ZN15WebChromeClient10setToolTipERKN3WTF6StringEN7WebCore13TextDirectionE
-[WebView(WebViewInternal) _selectedOrMainFrame]
-[WebView selectedFrame]
-[WebView(WebFileInternal) _focusedFrame]
-[WebFrame(WebInternal) _findFrameWithSelection]
-[WebFrame(WebInternal) _hasSelection]
-[WebHTMLView(WebPrivate) _setToolTip:]
+[WebStringTruncator initialize]
+[WebStringTruncator centerTruncateString:toWidth:withFont:]
__ZL14fontFromNSFontP6NSFont
+[NSURL(WebNSURLExtras) _web_URLWithUserTypedString:]
+[NSUserDefaults(WebNSUserDefaultsExtras) _webkit_preferredLanguageCode]
-[WebView setDownloadDelegate:]
-[WebFrameView setNextKeyView:]
-[WebFrameView wantsUpdateLayer]
-[WebHTMLView setLayer:]
-[NSString(WebKitExtras) _web_drawAtPoint:font:textColor:]
-[NSString(WebKitExtras) _web_drawAtPoint:font:textColor:allowingFontSmoothing:]
-[WebFrameView updateLayer]
-[WebHTMLView(WebInternal) drawLayer:inContext:]
-[DOMDocument(WebDOMDocumentOperations) webFrame]
-[WebPreferences(WebPrivate) setRespectStandardStyleKeyEquivalents:]
+[WebHistory(WebPrivate) _setVisitedLinkTrackingEnabled:]
+[WebHistory(WebPrivate) _removeAllVisitedLinks]
__ZN20WebFrameLoaderClient31dispatchDecidePolicyForResponseEMN7WebCore13PolicyCheckerEFvNS0_12PolicyActionEERKNS0_16ResourceResponseERKNS0_15ResourceRequestE
-[WebDefaultPolicyDelegate webView:decidePolicyForMIMEType:request:frame:decisionListener:]
__Z26WKNotifyHistoryItemChangedPN7WebCore11HistoryItemE
__ZN20WebFrameLoaderClient19updateGlobalHistoryEv
-[WebView(WebPendingPublic) historyDelegate]
+[WebHistory optionalSharedHistory]
__ZN20WebFrameLoaderClient32updateGlobalHistoryRedirectLinksEv
__ZNK7WebCore14DocumentLoader30serverRedirectSourceForHistoryEv
__ZN20WebFrameLoaderClient30updateGlobalHistoryItemForPageEv
-[WebView(WebPrivate) _setGlobalHistoryItem:]
__ZN21WebPlatformStrategies25createVisitedLinkStrategyEv
__ZThn128_N21WebPlatformStrategies14addVisitedLinkEPN7WebCore4PageEy
__ZN20WebFrameLoaderClient15willChangeTitleEPN7WebCore14DocumentLoaderE
__ZN20WebFrameLoaderClient14didChangeTitleEPN7WebCore14DocumentLoaderE
__ZN20WebFrameLoaderClient8setTitleERKN7WebCore19StringWithDirectionERKNS0_4KURLE
-[NSURL(WebNSURLExtras) _webkit_canonicalize]
_WKNSURLProtocolClassForRequest
__ZN20WebFrameLoaderClient23dispatchDidReceiveTitleERKN7WebCore19StringWithDirectionE
__ZN7WebCore17FrameLoaderClient21allowScriptFromSourceEbRKNS_4KURLE
__ZN3WTF9HashTableImmNS_17IdentityExtractorENS_7IntHashImEENS_10HashTraitsImEES5_E16lookupForWritingINS_22IdentityHashTranslatorIS3_EEmEENSt3__14pairIPmbEERKT0_
__ZN7WebCore17FrameLoaderClient10allowImageEbRKNS_4KURLE
-[WebFrame(WebPrivate) setAccessibleName:]
-[WebFrame dataSource]
+[WebScriptWorld(WebInternal) findOrCreateWorld:]
+[WebScriptWorld standardWorld]
-[WebScriptWorld initWithWorld:]
-[WebScriptWorldPrivate .cxx_construct]
-[WebFrame globalContext]
__ZN3WTF9HashTableINS_6RefPtrIN7WebCore15DOMWrapperWorldEEENS_12KeyValuePairIS4_N3JSC6StrongINS2_16JSDOMWindowShellEEEEENS_24KeyValuePairKeyExtractorISA_EENS_7PtrHashIS4_EENS_22KeyValuePairHashTraitsINS_10HashTraitsIS4_EENSG_IS9_EEEESH_E6lookupINS_17HashMapTranslatorISJ_SE_EEPS3_EEPSA_RKT0_
__ZN15WebChromeClient18formStateDidChangeEPKN7WebCore4NodeE
__ZN3WTF9HashTableImmNS_17IdentityExtractorENS_7IntHashImEENS_10HashTraitsImEES5_E6shrinkEv
+[WebDynamicScrollBarsView _horizontalScrollerClass]
+[WebView(WebPrivate) _reportException:inContext:]
__ZThn128_N21WebPlatformStrategies13isLinkVisitedEPN7WebCore4PageEyRKNS0_4KURLERKN3WTF12AtomicStringE
__ZN15WebChromeClient20populateVisitedLinksEv
_WKUnregisterUniqueIdForElement
-[WebHTMLRepresentation title]
-[WebHTMLView dealloc]
-[WebHTMLView(WebPrivate) close]
-[WebHTMLView(WebPrivate) _clearLastHitViewIfSelf]
-[WebPluginController destroyAllPlugins]
-[WebPluginController _cancelOutstandingChecks]
-[WebHTMLViewPrivate clear]
-[WebPluginController dealloc]
-[WebHTMLRepresentation dealloc]
-[WebHTMLViewPrivate dealloc]
-[NSURL(WebNSURLExtras) _web_hostString]
-[NSURL(WebNSURLExtras) _web_hostData]
-[NSURL(WebNSURLExtras) _web_schemeData]
-[NSData(WebNSDataExtras) _web_isCaseInsensitiveEqualToCString:]
-[NSString(WebNSURLExtras) _web_decodeHostName]
+[WebView(WebPrivate) _shouldUseFontSmoothing]
+[WebView(WebPrivate) _setShouldUseFontSmoothing:]
+[WebStringTruncator rightTruncateString:toWidth:withFont:]
__ZN7WebCore12ChromeClient19addMessageToConsoleENS_13MessageSourceENS_11MessageTypeENS_12MessageLevelERKN3WTF6StringEjjS7_
__ZN15WebChromeClient19addMessageToConsoleEN7WebCore13MessageSourceENS0_12MessageLevelERKN3WTF6StringEjjS6_
__ZNK25WebFrameNetworkingContext31localFileContentSniffingEnabledEv
__ZN20WebFrameLoaderClient11createFrameERKN7WebCore4KURLERKN3WTF6StringEPNS0_21HTMLFrameOwnerElementES7_bii
+[WebFrame(WebInternal) _createSubframeWithOwnerElement:frameName:frameView:]
__ZN21WebPlatformStrategies21createCookiesStrategyEv
__ZThn72_N21WebPlatformStrategies13cookiesForDOMERKN7WebCore21NetworkStorageSessionERKNS0_4KURLES6_
__ZN21WebPlatformStrategies21createStorageStrategyEv
__ZN23WebStorageTrackerClient23dispatchDidModifyOriginERKN3WTF6StringE
__ZN23WebStorageTrackerClient35dispatchDidModifyOriginOnMainThreadEPv
__ZN23WebStorageTrackerClient23dispatchDidModifyOriginEN3WTF10PassRefPtrIN7WebCore14SecurityOriginEEE
-[WebSecurityOrigin(WebInternal) _initWithWebCoreSecurityOrigin:]
-[WebSecurityOrigin dealloc]
__ZN23WebStorageTrackerClient23didFinishLoadingOriginsEv
-[WebHTMLView scrollWheel:]
_WKGetWheelEventDeltas
-[WebClipView scrollWheel:]
-[WebDynamicScrollBarsView(WebInternal) scrollWheel:]
-[WebDynamicScrollBarsView(WebInternal) allowsVerticalScrolling]
+[WebStringTruncator centerTruncateString:toWidth:]
-[WebFrame loadData:MIMEType:textEncodingName:baseURL:]
-[NSURL(WebNSURLExtras) _webkit_URLFromURLOrSchemelessFileURL]
_WKSetNSURLRequestShouldContentSniff
_WKGetCFURLResponseMIMEType
__ZN20WebFrameLoaderClient38dispatchDidLoadResourceFromMemoryCacheEPN7WebCore14DocumentLoaderERKNS0_15ResourceRequestERKNS0_16ResourceResponseEi
-[WebFrame(WebInternal) _characterRangeAtPoint:]
-[WebView(WebViewEditing) selectedDOMRange]
-[WebHTMLRepresentation attributedStringFrom:startOffset:to:endOffset:]
-[WebHTMLView shouldDelayWindowOrderingForEvent:]
-[WebHTMLView(WebHTMLViewFileInternal) _hitViewForEvent:]
-[WebHTMLView _isSelectionEvent:]
-[WebElementDictionary _isSelected]
-[WebHTMLView acceptsFirstResponder]
-[WebHTMLView mouseDown:]
-[WebHTMLView(WebHTMLViewFileInternal) _setMouseDownEvent:]
__ZN15WebChromeClient29supportsImmediateInvalidationEv
__ZN15WebChromeClient14firstResponderEv
-[WebDefaultUIDelegate webViewFirstResponder:]
__ZN15WebChromeClient18makeFirstResponderEP11NSResponder
-[WebView(WebPrivate) _pushPerformingProgrammaticFocus]
-[WebDefaultUIDelegate webView:makeFirstResponder:]
-[WebHTMLView becomeFirstResponder]
-[WebView(WebPrivate) _isPerformingProgrammaticFocus]
-[WebHTMLView(WebInternal) _updateFontPanel]
-[WebHTMLView(WebPrivate) _canEdit]
__ZN15WebChromeClient19focusedFrameChangedEPN7WebCore5FrameE
-[WebView(WebPrivate) _popPerformingProgrammaticFocus]
-[WebHTMLView mouseUp:]
-[WebElementDictionary _titleDisplayString]
-[WebElementDictionary _textContent]
-[WebElementDictionary count]
-[WebElementDictionary _fillCache]
__ZL16cacheValueForKeyPKvS0_Pv
-[WebElementDictionary _webFrame]
-[WebElementDictionary _title]
-[WebElementDictionary _absoluteImageURL]
-[WebElementDictionary _isContentEditable]
-[WebElementDictionary _image]
-[WebElementDictionary _spellingToolTip]
-[WebElementDictionary _isInScrollBar]
-[WebElementDictionary _absoluteMediaURL]
-[WebElementDictionary _imageRect]
-[WebElementDictionary _altDisplayString]
-[WebElementDictionary _targetWebFrame]
-[WebElementDictionary _isLiveLink]
-[WebElementDictionary keyEnumerator]
-[WebFramePolicyListener ignore]
-[WebHTMLView(WebPrivate) _updateMouseoverWithFakeEvent]
-[WebHTMLView resignFirstResponder]
-[WebHTMLView updateCell:]
-[WebHTMLView maintainsInactiveSelection]
-[WebView(WebViewEditing) maintainsInactiveSelection]
-[WebHTMLView(WebDocumentPrivateProtocols) deselectAll]
-[WebHTMLView clearFocus]
__ZN20WebFrameLoaderClient33dispatchWillPerformClientRedirectERKN7WebCore4KURLEdd
-[WebDataSource isLoading]
-[WebDataSource data]
__ZN20WebFrameLoaderClient31dispatchDidCancelClientRedirectEv
__ZNK20WebFrameLoaderClient17willCacheResponseEPN7WebCore14DocumentLoaderEmP19NSCachedURLResponse
-[WebFrame windowObject]
_WKGetUserToBaseCTM
_WKCGContextDrawsWithCorrectShadowOffsets
_WKSetBaseCTM
_WKCGPathAddRoundedRect
-[WebHTMLView(WebPrivate) addTrackingRect:owner:userData:assumeInside:]
-[WebHTMLView(WebPrivate) _sendToolTipMouseEntered]
-[WebHTMLView(WebPrivate) _sendToolTipMouseExited]
-[WebHTMLView(WebPrivate) removeTrackingRect:]
__ZNK20WebFrameLoaderClient12canCachePageEv
__ZN20WebFrameLoaderClient29savePlatformDataToCachedFrameEPN7WebCore11CachedFrameE
__ZN20WebFrameLoaderClient18didSaveToPageCacheEv
-[WebHTMLView(WebPrivate) _removeTrackingRects:count:]
+[WebCache initialize]
+[WebCache empty]
+[WebCache setDisabled:]
-[NSFileManager(WebNSFileManagerExtras) _webkit_setMetadataURL:referrer:atPath:]
-[NSURL(WebNSURLExtras) _web_URLByRemovingUserInfo]
__ZL11setMetaDataPv
_WKSetMetadataURL
+[WebHTMLView(WebPrivate) _postFlagsChangedEvent:]
-[WebHTMLView performKeyEquivalent:]
-[WebHTMLView _handleStyleKeyEquivalent:]
-[WebPreferences(WebPrivate) respectStandardStyleKeyEquivalents]
__ZN21WebPlatformStrategies20createPluginStrategyEv
__ZThn104_N21WebPlatformStrategies13getPluginInfoEPKN7WebCore4PageERN3WTF6VectorINS0_10PluginInfoELm0ENS4_15CrashOnOverflowEEE
__ZN21WebPlatformStrategies13getPluginInfoEPKN7WebCore4PageERN3WTF6VectorINS0_10PluginInfoELm0ENS4_15CrashOnOverflowEEE
+[WebPluginDatabase sharedDatabase]
-[WebPluginDatabase init]
+[WebPluginDatabase(Internal) _defaultPlugInPaths]
-[WebPluginDatabase setPlugInPaths:]
-[WebPluginDatabase refresh]
-[WebPluginDatabase(Internal) _scanForNewPlugins]
-[WebPluginDatabase(Internal) _plugInPaths]
+[WebBasePluginPackage initialize]
+[WebBasePluginPackage pluginWithPath:]
-[WebBasePluginPackage .cxx_construct]
-[WebPluginPackage initWithPath:]
-[WebBasePluginPackage initWithPath:]
-[WebPluginPackage dealloc]
-[WebBasePluginPackage dealloc]
-[WebBasePluginPackage .cxx_destruct]
__ZN7WebCore10PluginInfoD2Ev
-[WebNetscapePluginPackage .cxx_construct]
-[WebNetscapePluginPackage initWithPath:]
-[WebNetscapePluginPackage _initWithPath:]
-[WebBasePluginPackage getPluginInfoFromPLists]
-[WebBasePluginPackage _objectForInfoDictionaryKey:]
-[NSArray(WebPluginExtensions) _web_lowercaseStrings]
__ZN3WTF6VectorINS_6StringELm0ENS_15CrashOnOverflowEE15reserveCapacityEm
__ZN3WTF6VectorIN7WebCore13MimeClassInfoELm0ENS_15CrashOnOverflowEE14appendSlowCaseIS2_EEvRKT_
__ZN3WTF6VectorIN7WebCore13MimeClassInfoELm0ENS_15CrashOnOverflowEE14expandCapacityEmPKS2_
__ZN3WTF6VectorIN7WebCore13MimeClassInfoELm0ENS_15CrashOnOverflowEE15reserveCapacityEm
__ZN3WTF6VectorINS_6StringELm0ENS_15CrashOnOverflowEEC2ERKS3_
__ZN7WebCore13MimeClassInfoD2Ev
-[WebBasePluginPackage isNativeLibraryData:]
-[WebBasePluginPackage pListForPath:createFile:]
-[WebPluginDatabase(Internal) _addPlugin:]
-[WebBasePluginPackage path]
-[WebBasePluginPackage wasAddedToPluginDatabase:]
-[WebBasePluginPackage pluginInfo]
-[WebPluginDatabase pluginForMIMEType:]
-[WebBasePluginPackage supportsMIMEType:]
__ZL14checkCandidatePP20WebBasePluginPackageS1_
-[WebBasePluginPackage isQuickTimePlugIn]
-[WebBasePluginPackage bundleIdentifier]
-[WebBasePluginPackage isJavaPlugIn]
+[WebView(WebPrivate) _registerPluginMIMEType:]
+[WebView registerViewClass:representationClass:forMIMEType:]
__ZN3WTF9HashTableINS_6StringES1_NS_17IdentityExtractorENS_10StringHashENS_10HashTraitsIS1_EES5_E3addINS_22IdentityHashTranslatorIS3_EES1_S1_EENS_18HashTableAddResultINS_17HashTableIteratorIS1_S1_S2_S3_S5_S5_EEEERKT0_RKT1_
__ZN3WTF9HashTableINS_6StringES1_NS_17IdentityExtractorENS_10StringHashENS_10HashTraitsIS1_EES5_E6rehashEi
__ZN3WTF9HashTableINS_6StringES1_NS_17IdentityExtractorENS_10StringHashENS_10HashTraitsIS1_EES5_E16lookupForWritingINS_22IdentityHashTranslatorIS3_EES1_EENSt3__14pairIPS1_bEERKT0_
__ZN3WTF9HashTableINS_6StringES1_NS_17IdentityExtractorENS_10StringHashENS_10HashTraitsIS1_EES5_E6lookupINS_22IdentityHashTranslatorIS3_EES1_EEPS1_RKT0_
-[WebPluginDatabase plugins]
__ZN3WTF6VectorIN7WebCore10PluginInfoELm0ENS_15CrashOnOverflowEE14expandCapacityEmPKS2_
__ZN3WTF6VectorIN7WebCore10PluginInfoELm0ENS_15CrashOnOverflowEE15reserveCapacityEm
__ZN7WebCore10PluginInfoC2ERKS0_
__ZN3WTF6VectorIN7WebCore13MimeClassInfoELm0ENS_15CrashOnOverflowEEC2ERKS4_
+[WebView _applicationWillTerminate]
+[WebView(WebPrivate) closeAllWebViews]
+[WebPluginDatabase closeSharedDatabase]
-[WebView(WebViewEditing) editingDelegate]
-[WebView(WebPrivate) setAlwaysShowVerticalScroller:]
-[WebDynamicScrollBarsView(WebInternal) setVerticalScrollingMode:andLock:]
-[WebDynamicScrollBarsView(WebInternal) horizontalScrollingMode]
-[WebDynamicScrollBarsView(WebInternal) setScrollingModesLocked:]
-[WebPreferences setAllowsAnimatedImages:]
-[WebPreferences setShouldPrintBackgrounds:]
-[WebPreferences(WebPrivate) setEditableLinkBehavior:]
-[WebPreferences setUsesPageCache:]
-[WebPreferences(WebPrivate) setDNSPrefetchingEnabled:]
-[WebPreferences setDefaultTextEncodingName:]
-[WebPreferences setFixedFontFamily:]
-[WebPreferences setMinimumLogicalFontSize:]
-[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:]
-[WebView(WebViewInternal) _needsOneShotDrawingSynchronization]
__Z24CallResourceLoadDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS1_S0_S0_
-[WebPreferences(WebPrivate) setShowsURLsInToolTips:]
-[WebView(WebPrivate) _preferencesChangedNotification:]
-[WebView(WebViewEditing) spellCheckerDocumentTag]
-[WebView(WebViewEditing) isContinuousSpellCheckingEnabled]
-[WebView(WebViewEditing) setContinuousSpellCheckingEnabled:]
-[WebView(WebFileInternal) _continuousCheckingAllowed]
+[WebView(WebFileInternal) _preflightSpellChecker]
+[WebView(WebFileInternal) _preflightSpellCheckerNow:]
-[WebView(WebViewGrammarChecking) isGrammarCheckingEnabled]
-[WebView becomeFirstResponder]
-[WebFrameView acceptsFirstResponder]
-[WebFrameView becomeFirstResponder]
-[WebView setPreferencesIdentifier:]
__ZN7WebCore19ResourceRequestBaseaSERKS0_
__ZN3WTF9HashTableINS_12AtomicStringENS_12KeyValuePairIS1_NS_6StringEEENS_24KeyValuePairKeyExtractorIS4_EENS_15CaseFoldingHashENS_18HashMapValueTraitsINS_10HashTraitsIS1_EENS9_IS3_EEEESA_E15deallocateTableEPS4_i
__ZN3WTF9HashTableINS_12AtomicStringENS_12KeyValuePairIS1_NS_6StringEEENS_24KeyValuePairKeyExtractorIS4_EENS_15CaseFoldingHashENS_18HashMapValueTraitsINS_10HashTraitsIS1_EENS9_IS3_EEEESA_E16lookupForWritingINS_22IdentityHashTranslatorIS7_EES1_EENSt3__14pairIPS4_bEERKT0_
__ZN3WTF9HashTableINS_12AtomicStringENS_12KeyValuePairIS1_NS_6StringEEENS_24KeyValuePairKeyExtractorIS4_EENS_15CaseFoldingHashENS_18HashMapValueTraitsINS_10HashTraitsIS1_EENS9_IS3_EEEESA_E3addINS_22IdentityHashTranslatorIS7_EES1_S4_EENS_18HashTableAddResultINS_17HashTableIteratorIS1_S4_S6_S7_SC_SA_EEEERKT0_RKT1_
__ZN3WTF9HashTableINS_12AtomicStringENS_12KeyValuePairIS1_NS_6StringEEENS_24KeyValuePairKeyExtractorIS4_EENS_15CaseFoldingHashENS_18HashMapValueTraitsINS_10HashTraitsIS1_EENS9_IS3_EEEESA_E6rehashEi
__ZN3WTF9HashTableINS_12AtomicStringENS_12KeyValuePairIS1_NS_6StringEEENS_24KeyValuePairKeyExtractorIS4_EENS_15CaseFoldingHashENS_18HashMapValueTraitsINS_10HashTraitsIS1_EENS9_IS3_EEEESA_EaSERKSD_
__ZN3WTF6VectorINS_6StringELm0ENS_15CrashOnOverflowEEaSERKS3_
-[WebView(WebViewEditing) selectionAffinity]
-[WebView(WebViewEditing) setSelectedDOMRange:affinity:]
-[WebView(WebViewEditing) setEditingDelegate:]
-[WebView(WebViewEditing) registerForEditingDelegateNotification:selector:]
-[WebView(WebViewEditing) setEditable:]
__ZN15WebEditorClient23willSetInputMethodStateEv
__ZN15WebEditorClient18shouldBeginEditingEPN7WebCore5RangeE
-[WebView(WebPrivate) _editingDelegateForwarder]
+[WebDefaultEditingDelegate sharedEditingDelegate]
-[WebDefaultEditingDelegate webView:shouldBeginEditingInDOMRange:]
__ZN15WebChromeClient15elementDidFocusEPKN7WebCore4NodeE
__ZN15WebEditorClient15didBeginEditingEv
__ZN15WebChromeClient18focusedNodeChangedEPN7WebCore4NodeE
__ZN15WebEditorClient19setInputMethodStateEb
__ZN15WebEditorClient32isContinuousSpellCheckingEnabledEv
__ZN15WebEditorClient24isGrammarCheckingEnabledEv
__ZN15WebEditorClient11textCheckerEv
__ZThn8_NK15WebEditorClient38shouldEraseMarkersAfterChangeSelectionEN7WebCore16TextCheckingTypeE
__ZN15WebEditorClient25respondToChangedSelectionEPN7WebCore5FrameE
-[WebHTMLView(WebInternal) _selectionChanged]
-[WebHTMLView(WebNSTextInputSupport) _updateSelectionForInputManager]
-[WebView(WebPendingPublic) setTabKeyCyclesThroughElements:]
-[WebView(WebViewEditing) undoManager]
-[WebDefaultEditingDelegate undoManagerForWebView:]
-[WebView mainFrameDocument]
-[WebView(WebViewEditingInMail) _simplifyMarkup:endNode:]
__ZN15WebEditorClient16registerUndoStepEN3WTF10PassRefPtrIN7WebCore8UndoStepEEE
__ZN15WebEditorClient22registerUndoOrRedoStepEN3WTF10PassRefPtrIN7WebCore8UndoStepEEEb
+[WebUndoStep initialize]
+[WebUndoStep stepWithUndoStep:]
-[WebUndoStep .cxx_construct]
-[WebUndoStep initWithUndoStep:]
__ZN15WebEditorClient24respondToChangedContentsEv
+[WebPreferences(WebPrivate) _checkLastReferenceForIdentifier:]
-[WebHTMLView(WebPrivate) _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
-[WebHTMLView windowDidResignKey:]
_WKRecommendedScrollerStyle
-[WebHTMLView needsPanelToBecomeKey]
-[WebHTMLView(WebNSTextInputSupport) validAttributesForMarkedText]
-[WebHTMLView(WebPrivate) _recursive:displayRectIgnoringOpacity:inContext:topView:]
__ZN15WebChromeClient14elementDidBlurEPKN7WebCore4NodeE
__ZN15WebEditorClient13didEndEditingEv
-[WebView acceptsFirstResponder]
-[WebHTMLView flagsChanged:]
__ZN15WebEditorClient24handleInputMethodKeydownEPN7WebCore13KeyboardEventE
-[WebHTMLView(WebInternal) _interpretKeyEvent:savingCommands:]
__ZN15WebEditorClient19handleKeyboardEventEPN7WebCore13KeyboardEventE
-[WebHTMLView keyDown:]
-[WebHTMLView(WebNSTextInputSupport) hasMarkedText]
-[WebHTMLView(WebNSTextInputSupport) insertText:]
__ZN3WTF6VectorIN7WebCore15KeypressCommandELm0ENS_15CrashOnOverflowEE14expandCapacityEmPKS2_
__ZN3WTF6VectorIN7WebCore15KeypressCommandELm0ENS_15CrashOnOverflowEE15reserveCapacityEm
__ZN3WTF11VectorMoverILb0EN7WebCore15KeypressCommandEE4moveEPKS2_S5_PS2_
-[WebHTMLView coreCommandBySelector:]
__ZN3WTF9HashTableIP13objc_selectorNS_12KeyValuePairIS1_NS_6StringEEENS_24KeyValuePairKeyExtractorIS4_EENS_7PtrHashIS1_EENS_18HashMapValueTraitsINS_10HashTraitsIS1_EENSA_IS3_EEEESB_E16lookupForWritingINS_22IdentityHashTranslatorIS8_EES1_EENSt3__14pairIPS4_bEERKT0_
__ZN3WTF9HashTableIP13objc_selectorNS_12KeyValuePairIS1_NS_6StringEEENS_24KeyValuePairKeyExtractorIS4_EENS_7PtrHashIS1_EENS_18HashMapValueTraitsINS_10HashTraitsIS1_EENSA_IS3_EEEESB_E3addINS_17HashMapTranslatorISD_S8_EES1_S3_EENS_18HashTableAddResultINS_17HashTableIteratorIS1_S4_S6_S8_SD_SB_EEEERKT0_RKT1_
__ZN3WTF9HashTableIP13objc_selectorNS_12KeyValuePairIS1_NS_6StringEEENS_24KeyValuePairKeyExtractorIS4_EENS_7PtrHashIS1_EENS_18HashMapValueTraitsINS_10HashTraitsIS1_EENSA_IS3_EEEESB_E6lookupINS_22IdentityHashTranslatorIS8_EES1_EEPS4_RKT0_
__ZN3WTF9HashTableIP13objc_selectorNS_12KeyValuePairIS1_NS_6StringEEENS_24KeyValuePairKeyExtractorIS4_EENS_7PtrHashIS1_EENS_18HashMapValueTraitsINS_10HashTraitsIS1_EENSA_IS3_EEEESB_E6rehashEi
-[WebHTMLView(WebInternal) _executeSavedKeypressCommands]
__ZN3WTF6String7replaceEtt
__ZN15WebEditorClient16shouldInsertTextERKN3WTF6StringEPN7WebCore5RangeENS4_18EditorInsertActionE
-[WebView(WebViewEditing) typingStyle]
-[WebFrame(WebInternal) _typingStyle]
__ZN15WebEditorClient25shouldChangeSelectedRangeEPN7WebCore5RangeES2_NS0_9EAffinityEb
-[WebView(WebViewEditing) _shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]
-[WebDefaultEditingDelegate webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]
__ZN15WebEditorClient36isAutomaticSpellingCorrectionEnabledEv
-[WebView(WebViewTextChecking) isAutomaticSpellingCorrectionEnabled]
-[WebDynamicScrollBarsView(WebInternal) scrollOrigin]
__ZNK15WebChromeClient18scrollRectIntoViewERKN7WebCore7IntRectE
-[WebHTMLView keyUp:]
__ZN15WebEditorClient35isAutomaticQuoteSubstitutionEnabledEv
-[WebView(WebViewTextChecking) isAutomaticQuoteSubstitutionEnabled]
__ZN15WebEditorClient31isAutomaticLinkDetectionEnabledEv
-[WebView(WebViewTextChecking) isAutomaticLinkDetectionEnabled]
__ZN15WebEditorClient34isAutomaticDashSubstitutionEnabledEv
-[WebView(WebViewTextChecking) isAutomaticDashSubstitutionEnabled]
__ZN15WebEditorClient33isAutomaticTextReplacementEnabledEv
-[WebView(WebViewTextChecking) isAutomaticTextReplacementEnabled]
__ZThn8_N15WebEditorClient20checkTextOfParagraphEPKtijRN3WTF6VectorIN7WebCore18TextCheckingResultELm0ENS2_15CrashOnOverflowEEE
__ZN15WebEditorClient20checkTextOfParagraphEPKtijRN3WTF6VectorIN7WebCore18TextCheckingResultELm0ENS2_15CrashOnOverflowEEE
__ZN15WebEditorClient23spellCheckerDocumentTagEv
__ZL4coreP7NSArrayj
-[WebDynamicScrollBarsView scrollClipView:toPoint:]
-[WebClipView _immediateScrollToPoint:]
-[WebDynamicScrollBarsView(WebInternal) inProgrammaticScroll]
-[WebHTMLView(WebHTMLViewFileInternal) _frameView]
-[WebDefaultUIDelegate webView:didScrollDocumentInFrameView:]
-[WebDynamicScrollBarsView(WebInternal) allowsHorizontalScrolling]
-[WebHTMLView removeMouseMovedObserver]
-[WebView _windowWillClose:]
-[WebView shouldCloseWithWindow]
-[WebHTMLView windowWillClose:]
-[WebView _windowWillOrderOffScreen:]
-[WebHTMLView windowWillOrderOffScreen:]
-[WebUndoStep dealloc]
-[WebUndoStep .cxx_destruct]
-[WebView dealloc]