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
|
# Copyright (c) 2020-2022 Apple Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
# THE POSSIBILITY OF SUCH DAMAGE.
# For internal features:
# The type should be boolean.
# They must include a humanReadableName and humanReadableDescription. This is
# the text exposed to the user from the WebKit client.
AcceleratedFiltersEnabled:
type: bool
webcoreOnChange: setNeedsRelayoutAllFrames
humanReadableName: "Accelerated Filter Rendering"
humanReadableDescription: "Accelerated CSS and SVG filter rendering"
condition: USE(CORE_IMAGE)
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
# FIXME: This is not relevent for WebKitLegacy, so should be excluded from WebKitLegacy entirely.
AllowViewportShrinkToFitContent:
type: bool
humanReadableName: "Allow Viewport Shrink to Fit Content"
humanReadableDescription: "Allow the viewport shrink to fit content heuristic when appropriate"
condition: PLATFORM(IOS_FAMILY)
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: true
WebCore:
default: true
AlternateWebMPlayerEnabled:
type: bool
humanReadableName: "Alternate WebM Player"
humanReadableDescription: "Enable Alternate WebM Player"
condition: ENABLE(ALTERNATE_WEBM_PLAYER)
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
AlwaysZoomOnDoubleTap:
type: bool
humanReadableName: "DTTZ always"
humanReadableDescription: "Double taps zoom, even if we dispatched a click anywhere"
webcoreBinding: none
condition: PLATFORM(IOS_FAMILY)
exposed: [ WebKit ]
defaultValue:
WebKit:
default: false
AsyncFrameScrollingEnabled:
type: bool
webcoreOnChange: setNeedsRelayoutAllFrames
humanReadableName: "Async Frame Scrolling"
humanReadableDescription: "Perform frame scrolling off the main thread"
exposed: [ WebKit ]
defaultValue:
WebKitLegacy:
default: false
WebKit:
"USE(NICOSIA)": true
"PLATFORM(COCOA)": true
default: false
WebCore:
default: false
AsyncOverflowScrollingEnabled:
type: bool
webcoreOnChange: setNeedsRelayoutAllFrames
humanReadableName: "Async Overflow Scrolling"
humanReadableDescription: "Perform overflow scrolling off the main thread"
exposed: [ WebKit ]
defaultValue:
WebKitLegacy:
default: false
WebKit:
"USE(NICOSIA)": true
"PLATFORM(COCOA)": true
default: false
WebCore:
default: false
AutomaticLiveResizeEnabled:
type: bool
humanReadableName: "Enable Automatic Live Resize"
humanReadableDescription: "Automatically synchronize web view resize with painting"
webcoreBinding: none
exposed: [ WebKit ]
defaultValue:
WebKit:
"HAVE(UIKIT_WEBKIT_INTERNALS)": true
default: false
BlockIOKitInWebContentSandbox:
type: bool
humanReadableName: "IOKit blocking in the WebContent sandbox"
humanReadableDescription: "Block IOKit access in the WebContent sandbox"
webcoreBinding: none
exposed: [ WebKit ]
defaultValue:
WebKit:
default: true
CSSLogicalEnabled:
type: bool
humanReadableName: "CSS Logical Properties and Values"
humanReadableDescription: "Enable CSS Logical Properties and Values"
webcoreBinding: DeprecatedGlobalSettings
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
CSSOMViewScrollingAPIEnabled:
type: bool
humanReadableName: "CSSOM View Scrolling API"
humanReadableDescription: "Implement standard behavior for scrollLeft, scrollTop, scrollWidth, scrollHeight, scrollTo, scrollBy and scrollingElement."
defaultValue:
WebKitLegacy:
default: true
WebKit:
"PLATFORM(IOS_FAMILY)": WebKit::defaultCSSOMViewScrollingAPIEnabled()
default: true
WebCore:
default: false
CaptureAudioInGPUProcessEnabled:
type: bool
humanReadableName: "GPU Process: Audio Capture"
humanReadableDescription: "Enable audio capture in GPU Process"
webcoreBinding: none
condition: ENABLE(MEDIA_STREAM)
exposed: [ WebKit ]
defaultValue:
WebKit:
default: WebKit::defaultCaptureAudioInGPUProcessEnabled()
CaptureAudioInUIProcessEnabled:
type: bool
humanReadableName: "Capture audio in UI Process"
humanReadableDescription: "Enable audio capture in UI Process"
webcoreBinding: none
condition: ENABLE(MEDIA_STREAM)
exposed: [ WebKit ]
defaultValue:
WebKit:
default: WebKit::defaultCaptureAudioInUIProcessEnabled()
CaptureVideoInGPUProcessEnabled:
type: bool
humanReadableName: "GPU Process: Video Capture"
humanReadableDescription: "Enable video capture in GPU Process"
webcoreBinding: none
condition: ENABLE(MEDIA_STREAM)
exposed: [ WebKit ]
defaultValue:
WebKit:
"ENABLE(GPU_PROCESS_BY_DEFAULT)": true
default: false
CaptureVideoInUIProcessEnabled:
type: bool
humanReadableName: "Capture video in UI Process"
humanReadableDescription: "Enable video capture in UI Process"
webcoreBinding: none
condition: ENABLE(MEDIA_STREAM)
exposed: [ WebKit ]
defaultValue:
WebKit:
default: false
CookieConsentAPIEnabled:
type: bool
humanReadableName: "Cookie Consent API"
humanReadableDescription: "Enable cookie consent API"
exposed: [ WebKit ]
defaultValue:
WebCore:
default: false
WebKitLegacy:
default: false
WebKit:
default: false
DOMPasteAccessRequestsEnabled:
type: bool
humanReadableName: "DOM Paste Access Requests"
humanReadableDescription: "Enable DOM Paste Access Requests"
defaultValue:
WebKitLegacy:
default: false
WebKit:
"PLATFORM(IOS) || PLATFORM(MAC)": true
default: false
WebCore:
default: false
# FIXME: This is on by default in WebKit2 (for everything but WatchOS). Perhaps we should consider turning it on for WebKitLegacy as well.
DataListElementEnabled:
type: bool
humanReadableName: "DataList Element"
humanReadableDescription: "Enable datalist elements"
webcoreBinding: DeprecatedGlobalSettings
condition: ENABLE(DATALIST_ELEMENT)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"PLATFORM(WATCHOS)": false
default: true
# FIXME: This is on by default in WebKit2 (for macOS at least). Perhaps we should consider turning it on for WebKitLegacy as well.
DateTimeInputsEditableComponentsEnabled:
type: bool
humanReadableName: "Date/Time inputs have editable components"
humanReadableDescription: "Enable multiple editable components in date/time inputs"
condition: ENABLE(DATE_AND_TIME_INPUT_TYPES)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"PLATFORM(MAC) || PLATFORM(GTK)": true
default: false
WebCore:
default: false
EnterKeyHintEnabled:
type: bool
humanReadableName: "Enter Key Hint"
humanReadableDescription: "Enable the enterKeyHint HTML attribute"
defaultValue:
WebKitLegacy:
default: false
WebKit:
"PLATFORM(COCOA)": true
default: false
WebCore:
default: false
EventHandlerDrivenSmoothKeyboardScrollingEnabled:
type: bool
humanReadableName: "EventHandler driven smooth keyboard scrolling"
humanReadableDescription: "Enable EventHandler driven smooth keyboard scrolling"
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
FasterClicksEnabled:
type: bool
humanReadableName: "Fast clicks"
humanReadableDescription: "Support faster clicks on zoomable pages"
webcoreBinding: none
condition: PLATFORM(IOS_FAMILY)
exposed: [ WebKit ]
defaultValue:
WebKit:
default: true
FlexFormattingContextIntegrationEnabled:
type: bool
humanReadableName: "Next-generation flex layout integration (FFC)"
humanReadableDescription: "Enable next-generation flex layout integration (FFC)"
condition: ENABLE(LAYOUT_FORMATTING_CONTEXT)
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
# FIXME: This should be reconciled with 'FrameFlattening' in WebPreferences.yaml .
FrameFlatteningEnabled:
type: bool
humanReadableName: "Frame flattening"
humanReadableDescription: "Enable frame flattening, which adjusts the height of an iframe to fit its contents"
webcoreBinding: custom
exposed: [ WebKit ]
defaultValue:
WebKit:
"PLATFORM(IOS_FAMILY)": true
default: false
FullScreenEnabled:
type: bool
humanReadableName: "Fullscreen API"
humanReadableDescription: "Fullscreen API"
condition: ENABLE(FULLSCREEN_API)
hidden: EXPERIMENTAL_FULLSCREEN_API_HIDDEN
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
GetUserMediaRequiresFocus:
type: bool
humanReadableName: "Require focus to start getUserMedia"
humanReadableDescription: "Require focus to start getUserMedia"
condition: ENABLE(MEDIA_STREAM)
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
WebCore:
default: true
ICECandidateFilteringEnabled:
type: bool
webcoreOnChange: iceCandidateFilteringEnabledChanged
inspectorOverride: true
humanReadableName: "Enable ICE Candidate Filtering"
humanReadableDescription: "Enable ICE Candidate Filtering"
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
WebCore:
default: true
IOSFormControlRefreshEnabled:
type: bool
humanReadableName: "iOS Form Control Refresh"
humanReadableDescription: "Enable the new appearance for form controls on iOS"
condition: ENABLE(IOS_FORM_CONTROL_REFRESH)
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
WebCore:
default: true
IPCTestingAPIEnabled:
type: bool
humanReadableName: "IPC Testing API"
humanReadableDescription: "Enable IPC Testing API for JavaScript"
webcoreBinding: none
condition: ENABLE(IPC_TESTING_API)
exposed: [ WebKit ]
defaultValue:
WebKit:
default: false
ImageAnalysisDuringFindInPageEnabled:
type: bool
humanReadableName: "Image Analysis for Find-in-Page"
humanReadableDescription: "Trigger image analysis when performing Find-in-Page"
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
InlineFormattingContextIntegrationEnabled:
type: bool
humanReadableName: "Next-generation inline layout integration (IFC)"
humanReadableDescription: "Enable next-generation inline layout integration (IFC)"
webcoreBinding: DeprecatedGlobalSettings
condition: ENABLE(LAYOUT_FORMATTING_CONTEXT)
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
InputTypeColorEnabled:
type: bool
humanReadableName: "Color Inputs"
humanReadableDescription: "Enable input elements of type color"
condition: ENABLE(INPUT_TYPE_COLOR)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"PLATFORM(WATCHOS)": false
default: true
WebCore:
default: false
InputTypeDateEnabled:
type: bool
humanReadableName: "Date Input"
humanReadableDescription: "Enable input elements of type date"
condition: ENABLE(INPUT_TYPE_DATE)
defaultValue:
WebKitLegacy:
"PLATFORM(IOS_FAMILY)": true
default: false
WebKit:
"PLATFORM(APPLETV)": false
default: true
WebCore:
default: false
InputTypeDateTimeLocalEnabled:
type: bool
humanReadableName: "datetime-local Inputs"
humanReadableDescription: "Enable input elements of type datetime-local"
condition: ENABLE(INPUT_TYPE_DATETIMELOCAL)
defaultValue:
WebKitLegacy:
"PLATFORM(IOS_FAMILY)": true
default: false
WebKit:
"PLATFORM(APPLETV)": false
default: true
WebCore:
default: false
InputTypeMonthEnabled:
type: bool
humanReadableName: "Month Input"
humanReadableDescription: "Enable input elements of type month"
condition: ENABLE(INPUT_TYPE_MONTH)
defaultValue:
WebKitLegacy:
"PLATFORM(IOS_FAMILY)": true
default: false
WebKit:
"!PLATFORM(MAC) && !PLATFORM(APPLETV)": true
default: false
WebCore:
default: false
InputTypeTimeEnabled:
type: bool
humanReadableName: "Time Input"
humanReadableDescription: "Enable input elements of type time"
condition: ENABLE(INPUT_TYPE_TIME)
defaultValue:
WebKitLegacy:
"PLATFORM(IOS_FAMILY)": true
default: false
WebKit:
"PLATFORM(APPLETV)": false
default: true
WebCore:
default: false
InputTypeWeekEnabled:
type: bool
humanReadableName: "Week Input"
humanReadableDescription: "Enable input elements of type week"
condition: ENABLE(INPUT_TYPE_WEEK)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"!PLATFORM(MAC) && !PLATFORM(APPLETV)": true
default: false
WebCore:
default: false
InteractionRegionsEnabled:
type: bool
humanReadableName: "Interaction Regions"
humanReadableDescription: "Generate and visualize interaction regions"
condition: ENABLE(INTERACTION_REGIONS_IN_EVENT_REGION)
defaultValue:
WebKit:
default: true
WebKitLegacy:
default: false
WebCore:
default: false
# FIXME: This is not relevent for WebKitLegacy, so should be excluded from WebKitLegacy entirely.
IsFirstPartyWebsiteDataRemovalLiveOnTestingEnabled:
type: bool
humanReadableName: "[ITP Live-On] 1 Hour Timeout For Non-Cookie Data Removal"
humanReadableDescription: "Remove all non-cookie website data after just one hour of no user interaction when Intelligent Tracking Prevention is enabled"
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
# FIXME: This is not relevent for WebKitLegacy, so should be excluded from WebKitLegacy entirely.
IsFirstPartyWebsiteDataRemovalReproTestingEnabled:
type: bool
humanReadableName: "[ITP Repro] 30 Second Timeout For Non-Cookie Data Removal"
humanReadableDescription: "Remove all non-cookie website data after just 30 seconds of no user interaction when Intelligent Tracking Prevention is enabled"
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
LayerBasedSVGEngineEnabled:
type: bool
humanReadableName: "Layer-based SVG Engine (LBSE)"
humanReadableDescription: "Enable next-generation layer-based SVG Engine (LBSE)"
condition: ENABLE(LAYER_BASED_SVG_ENGINE)
webcoreOnChange: layerBasedSVGEngineEnabledChanged
defaultValue:
WebCore:
default: false
WebKitLegacy:
default: false
WebKit:
default: false
LayoutFormattingContextEnabled:
type: bool
humanReadableName: "Full next-generation layout (LFC)"
humanReadableDescription: "Enable full next-generation layout (LFC)"
webcoreBinding: DeprecatedGlobalSettings
condition: ENABLE(LAYOUT_FORMATTING_CONTEXT)
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
LegacyOverflowScrollingTouchEnabled:
type: bool
webcoreOnChange: setNeedsRelayoutAllFrames
humanReadableName: "Legacy -webkit-overflow-scrolling property"
humanReadableDescription: "Support the legacy -webkit-overflow-scrolling CSS property"
condition: ENABLE(OVERFLOW_SCROLLING_TOUCH)
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
WebCore:
default: true
LineHeightUnitsEnabled:
type: bool
humanReadableName: "lh / rlh units"
humanReadableDescription: "Enable the lh and lhr units"
webcoreBinding: DeprecatedGlobalSettings
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
LiveRangeSelectionEnabled:
type: bool
humanReadableName: "Live Ranges in Selection"
humanReadableDescription: "Live range behavior for ranges in the Selection object"
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
MediaCaptureRequiresSecureConnection:
type: bool
inspectorOverride: true
humanReadableName: "Limit Media Capture to Secure Sites"
humanReadableDescription: "Limit Media Capture to Secure Sites"
condition: ENABLE(MEDIA_STREAM)
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
WebCore:
default: true
MockCaptureDevicesEnabled:
type: bool
webcoreOnChange: mockCaptureDevicesEnabledChanged
inspectorOverride: true
condition: ENABLE(MEDIA_STREAM)
humanReadableName: "Enable Mock Capture Devices"
humanReadableDescription: "Enable Mock Capture Devices"
defaultValue:
WebKitLegacy:
default: false
WebKit:
"PLATFORM(IOS_FAMILY_SIMULATOR)": true
default: false
WebCore:
default: false
MomentumScrollingAnimatorEnabled:
type: bool
humanReadableName: "Momentum Scrolling Animator"
humanReadableDescription: "Generate momentum events in WebKit instead of using those delivered by the system"
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: true
WebCore:
default: false
MouseEventsSimulationEnabled:
type: bool
humanReadableName: "Mouse events simulation"
humanReadableDescription: "Enable mouse events dispatch along with touch events on iOS"
webcoreBinding: DeprecatedGlobalSettings
condition: ENABLE(TOUCH_EVENTS)
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
MuteCameraOnMicrophoneInterruptionEnabled:
type: bool
humanReadableName: "Mute Camera on Microphone Interruption"
humanReadableDescription: "Mute Camera on Microphone Interruption"
condition: ENABLE(MEDIA_STREAM)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"PLATFORM(IOS_FAMILY)": true
default: false
WebCore:
default: false
NotificationEventEnabled:
type: bool
humanReadableName: "NotificationEvent support"
humanReadableDescription: "NotificationEvent and ServiceWorkerRegistration.showNotification() support"
webcoreBinding: DeprecatedGlobalSettings
condition: ENABLE(NOTIFICATION_EVENT)
defaultValue:
WebCore:
"ENABLE(NOTIFICATION_EVENT)": true
default: false
WebKit:
"ENABLE(NOTIFICATION_EVENT)": true
default: false
OffscreenCanvasEnabled:
type: bool
humanReadableName: "OffscreenCanvas"
humanReadableDescription: "Support for the OffscreenCanvas APIs"
webcoreBinding: DeprecatedGlobalSettings
condition: ENABLE(OFFSCREEN_CANVAS)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"ENABLE(EXPERIMENTAL_FEATURES)": true
default: false
OffscreenCanvasInWorkersEnabled:
type: bool
humanReadableName: "OffscreenCanvas in Workers"
humanReadableDescription: "Support for the OffscreenCanvas APIs in Workers"
webcoreBinding: DeprecatedGlobalSettings
condition: ENABLE(OFFSCREEN_CANVAS_IN_WORKERS)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"ENABLE(EXPERIMENTAL_FEATURES)": true
default: false
PdfJSViewerEnabled:
type: bool
humanReadableName: "Enable PDF.js viewer"
humanReadableDescription: "Enable PDF.js viewer"
condition: ENABLE(PDFJS)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"PLATFORM(GTK) || PLATFORM(WPE)": true
default: false
WebCore:
default: false
PreferFasterClickOverDoubleTap:
type: bool
humanReadableName: "Fast clicks beat DTTZ"
humanReadableDescription: "Prefer a faster click over a double tap"
webcoreBinding: none
condition: PLATFORM(IOS_FAMILY)
exposed: [ WebKit ]
defaultValue:
WebKit:
"PLATFORM(IOS_FAMILY) && !PLATFORM(WATCHOS)": true
default: false
PreferSandboxedMediaParsing:
type: bool
humanReadableName: "Prefer Sandboxed Parsing of Media"
humanReadableDescription: "Prefer parsing media out-of-process in a sandboxed service"
condition: ENABLE(VIDEO)
defaultValue:
WebCore:
default: true
WebKitLegacy:
default: true
WebKit:
default: true
RemoveBackgroundEnabled:
type: bool
humanReadableName: "Remove Background"
humanReadableDescription: "Enable Remove Background"
condition: ENABLE(IMAGE_ANALYSIS_ENHANCEMENTS)
exposed: [ WebKit ]
defaultValue:
WebCore:
default: false
WebKitLegacy:
default: false
WebKit:
default: defaultRemoveBackgroundEnabled()
ReplayCGDisplayListsIntoBackingStore:
type: bool
humanReadableName: "CG Display Lists: Replay for Testing"
humanReadableDescription: "Replay CG Display Lists into layer contents for testing"
webcoreBinding: none
condition: ENABLE(CG_DISPLAY_LIST_BACKED_IMAGE_BUFFER)
exposed: [ WebKit ]
defaultValue:
WebKit:
default: false
ResourceLoadSchedulingEnabled:
type: bool
humanReadableName: "Resource Load Scheduling"
humanReadableDescription: "Network process side priority and visibility based resource load scheduling"
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: true
WebCore:
default: true
# FIXME: This is not relevent for WebKitLegacy, so should be excluded from WebKitLegacy entirely.
RestrictedHTTPResponseAccess:
type: bool
humanReadableName: "Filter HTTP Response for Web Processes"
humanReadableDescription: "Enable HTTP Response filtering for Web Processes"
webcoreBinding: DeprecatedGlobalSettings
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
SampleBufferContentKeySessionSupportEnabled:
type: bool
humanReadableName: "ContentKeySession support for SampleBuffer Renderers"
humanReadableDescription: "ContentKeySession support for SampleBuffer Renderers Enabled"
condition: HAVE(AVCONTENTKEYSPECIFIER)
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
ScrollingPerformanceTestingEnabled:
type: bool
humanReadableName: "Scroll Performance Testing Enabled"
humanReadableDescription: "Enable behaviors used by scrolling performance tests"
webcoreOnChange: scrollingPerformanceTestingEnabledChanged
exposed: [ WebKit ]
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
SecureContextChecksEnabled:
type: bool
humanReadableName: "Secure Context Checks"
humanReadableDescription: "Allow access to HTTPS-only Web APIs over HTTP"
webcoreBinding: DeprecatedGlobalSettings
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
SelectionFlippingEnabled:
type: bool
humanReadableName: "Selection Flipping"
humanReadableDescription: "Enable Selection Flipping"
webcoreBinding: none
defaultValue:
WebKit:
"HAVE(UIKIT_WEBKIT_INTERNALS)" : false
default: true
# FIXME: This is not implemented for WebKitLegacy, so should be excluded from WebKitLegacy entirely.
ServiceWorkersEnabled:
type: bool
humanReadableName: "Service Workers"
humanReadableDescription: "Enable Service Workers"
condition: ENABLE(SERVICE_WORKER)
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: true
WebCore:
default: false
ServiceWorkersUserGestureEnabled:
type: bool
humanReadableName: "Validate UserGesture requirements in Service Workers"
humanReadableDescription: "Validate UserGesture requirements in Service Workers"
condition: ENABLE(SERVICE_WORKER)
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: true
WebCore:
default: true
ShowModalDialogEnabled:
type: bool
humanReadableName: "Legacy showModalDialog() API"
humanReadableDescription: "Legacy showModalDialog() API"
defaultValue:
WebKitLegacy:
"PLATFORM(IOS_FAMILY)": WebKit::defaultShowModalDialogEnabled()
default: false
WebKit:
default: WebKit::defaultShowModalDialogEnabled()
WebCore:
default: false
# FIXME: Is this implemented for WebKitLegacy? If not, this should be excluded from WebKitLegacy entirely.
SpeakerSelectionRequiresUserGesture:
type: bool
humanReadableName: "Require a user gesture for speaker selection"
humanReadableDescription: "Require a user gesture for speaker selection"
condition: ENABLE(MEDIA_STREAM)
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
WebCore:
default: true
# FIXME: Is this implemented for WebKitLegacy? If not, this should be excluded from WebKitLegacy entirely.
TextAutosizingUsesIdempotentMode:
type: bool
webcoreOnChange: textAutosizingUsesIdempotentModeChanged
humanReadableName: "Idempotent Text Autosizing"
humanReadableDescription: "Use idempotent text autosizing mode"
condition: ENABLE(TEXT_AUTOSIZING)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"PLATFORM(IOS_FAMILY)": defaultTextAutosizingUsesIdempotentMode()
default: false
WebCore:
default: false
TextRecognitionInVideosEnabled:
type: bool
humanReadableName: "Text Recognition in Videos"
humanReadableDescription: "Enable Text Recognition in Videos"
condition: ENABLE(IMAGE_ANALYSIS)
exposed: [ WebKit ]
defaultValue:
WebCore:
default: false
WebKitLegacy:
default: false
WebKit:
default: defaultTextRecognitionInVideosEnabled()
# FIXME: Is this implemented for WebKitLegacy? If not, this should be excluded from WebKitLegacy entirely.
UndoManagerAPIEnabled:
type: bool
humanReadableName: "UndoManager DOM API"
humanReadableDescription: "Enable the UndoManager DOM API"
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebCore:
default: false
UpgradeKnownHostsToHTTPSEnabled:
type: bool
humanReadableName: "Upgrade known hosts to HTTPS"
humanReadableDescription: "Upgrade known hosts to HTTPS"
webcoreBinding: none
exposed: [ WebKit ]
defaultValue:
WebKit:
default: true
UseARKitForModel:
type: bool
humanReadableName: "Use ARKit for <model>"
humanReadableDescription: "Use ARKit for <model>"
webcoreBinding: none
exposed: [ WebKit ]
condition: ENABLE(ARKIT_INLINE_PREVIEW)
defaultValue:
WebKit:
default: true
UseCGDisplayListOutOfLineSurfaces:
type: bool
humanReadableName: "CG Display Lists: Out-of-line Surfaces"
humanReadableDescription: "Encode surfaces out-of-line for CG Display List image buffers."
webcoreBinding: none
condition: ENABLE(CG_DISPLAY_LIST_BACKED_IMAGE_BUFFER)
exposed: [ WebKit ]
defaultValue:
WebKit:
default: true
UseCGDisplayListsForDOMRendering:
type: bool
humanReadableName: "CG Display Lists: DOM Rendering"
humanReadableDescription: "Use CG Display Lists for DOM rendering"
webcoreBinding: none
condition: ENABLE(CG_DISPLAY_LIST_BACKED_IMAGE_BUFFER)
exposed: [ WebKit ]
defaultValue:
WebKit:
default: true
UseGPUProcessForCanvasRenderingEnabled:
type: bool
humanReadableName: "GPU Process: Canvas Rendering"
humanReadableDescription: "Enable canvas rendering in GPU Process"
webcoreBinding: none
condition: ENABLE(GPU_PROCESS) && !(PLATFORM(GTK) || PLATFORM(WPE))
exposed: [ WebKit ]
defaultValue:
WebKit:
"ENABLE(GPU_PROCESS_BY_DEFAULT)": true
"PLATFORM(WIN)": true
default: false
UseGPUProcessForMediaEnabled:
type: bool
humanReadableName: "GPU Process: Media"
humanReadableDescription: "Do all media loading and playback in the GPU Process"
webcoreBinding: none
condition: ENABLE(GPU_PROCESS) && !USE(GSTREAMER)
exposed: [ WebKit ]
defaultValue:
WebKit:
"ENABLE(GPU_PROCESS_BY_DEFAULT)": true
default: false
UseGeneralDirectoryForStorage:
type: bool
humanReadableName: "Use General Directory For Storage"
humanReadableDescription: "Use general storage directory for IndexedDB and LocalStorage"
webcoreBinding: none
exposed: [ WebKit ]
defaultValue:
WebKit:
default: true
UseSceneKitForModel:
type: bool
humanReadableName: "Use SceneKit for <model>"
humanReadableDescription: "Use SceneKit for <model>"
webcoreBinding: none
exposed: [ WebKit ]
condition: HAVE(SCENEKIT)
defaultValue:
WebKit:
default: false
VisualTranslationEnabled:
type: bool
humanReadableName: "Visual Translation"
humanReadableDescription: "Enable Visual Translation"
condition: ENABLE(IMAGE_ANALYSIS)
exposed: [ WebKit ]
defaultValue:
WebCore:
default: false
WebKitLegacy:
default: false
WebKit:
default: defaultVisualTranslationEnabled()
WebAPIStatisticsEnabled:
type: bool
humanReadableName: "Web API Statistics"
humanReadableDescription: "Enable Web API Statistics"
webcoreBinding: DeprecatedGlobalSettings
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: false
WebRTCAudioLatencyAdaptationEnabled:
type: bool
humanReadableName: "WebRTC Audio Latency Adaptation"
humanReadableDescription: "Enable WebRTC Audio Latency Adaptation"
webcoreBinding: DeprecatedGlobalSettings
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
# FIXME: Is this implemented for WebKitLegacy? If not, this should be excluded from WebKitLegacy entirely.
WebRTCDTMFEnabled:
type: bool
humanReadableName: "WebRTC DTMF"
humanReadableDescription: "Enable WebRTC DTMF"
webcoreBinding: DeprecatedGlobalSettings
condition: ENABLE(WEB_RTC)
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
# FIXME: Is this implemented for WebKitLegacy? If not, this should be excluded from WebKitLegacy entirely.
WebRTCH264HardwareEncoderEnabled:
type: bool
humanReadableName: "WebRTC H264 Hardware encoder"
humanReadableDescription: "Enable H264 Hardware encoder"
webcoreBinding: none
condition: ENABLE(WEB_RTC)
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
# FIXME: Is this implemented for WebKitLegacy? If not, this should be excluded from WebKitLegacy entirely.
WebRTCH264SimulcastEnabled:
type: bool
humanReadableName: "WebRTC H264 Simulcast"
humanReadableDescription: "Enable WebRTC H264 Simulcast"
webcoreBinding: DeprecatedGlobalSettings
condition: ENABLE(WEB_RTC)
defaultValue:
WebKitLegacy:
default: true
WebKit:
default: true
# FIXME: Is this implemented for WebKitLegacy? If not, this should be excluded from WebKitLegacy entirely.
WebRTCMDNSICECandidatesEnabled:
type: bool
humanReadableName: "WebRTC mDNS ICE candidates"
humanReadableDescription: "Enable WebRTC mDNS ICE candidates"
webcoreBinding: DeprecatedGlobalSettings
condition: ENABLE(WEB_RTC)
defaultValue:
WebKitLegacy:
default: false
WebKit:
default: true
# FIXME: This is not relevant for WebKitLegacy, so should be excluded from WebKitLegacy entirely.
WebRTCPlatformCodecsInGPUProcessEnabled:
type: bool
humanReadableName: "GPU Process: WebRTC Platform Codecs"
humanReadableDescription: "Enable WebRTC Platform Codecs in GPU Process"
condition: ENABLE(WEB_RTC)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"ENABLE(GPU_PROCESS_BY_DEFAULT)": true
default: false
WebCore:
default: false
WebRTCRemoteVideoFrameEnabled:
type: bool
humanReadableName: "WebRTC Remote Video Frame"
humanReadableDescription: "Enable WebRTC Remote Video Frame"
condition: ENABLE(WEB_RTC)
defaultValue:
WebKitLegacy:
default: false
WebKit:
"PLATFORM(COCOA)": true
default: false
WebCore:
default: false
WebSQLEnabled:
type: bool
humanReadableName: "Enable WebSQL"
humanReadableDescription: "Enable WebSQL"
webcoreBinding: custom
exposed: [ WebKitLegacy ]
defaultValue:
WebKitLegacy:
"PLATFORM(IOS_FAMILY)": WebKit::defaultWebSQLEnabled()
default: true
ZoomOnDoubleTapWhenRoot:
type: bool
condition: PLATFORM(IOS_FAMILY)
humanReadableName: "DTTZ also when root"
humanReadableDescription: "Double taps zoom, even if we dispatched a click on the root nodes"
webcoreBinding: none
exposed: [ WebKit ]
defaultValue:
WebKit:
default: false
|