Changeset 236270 in webkit


Ignore:
Timestamp:
Sep 20, 2018 11:07:39 AM (6 years ago)
Author:
dino@apple.com
Message:

Temporarily move fullscreen back to experimental features
https://bugs.webkit.org/show_bug.cgi?id=189770
<rdar://problem/44619282>

Revert this change now that there is a commit to cherry-pick.

  • Shared/WebPreferences.yaml:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r236262 r236270  
     12018-09-19  Dean Jackson  <dino@apple.com>
     2
     3        Temporarily move fullscreen back to experimental features
     4        https://bugs.webkit.org/show_bug.cgi?id=189770
     5        <rdar://problem/44619282>
     6
     7        Revert this change now that there is a commit to cherry-pick.
     8
     9        * Shared/WebPreferences.yaml:
     10
    1112018-09-20  Chris Dumez  <cdumez@apple.com>
    212
  • trunk/Source/WebKit/Shared/WebPreferences.yaml

    r236234 r236270  
    12541254  condition: ENABLE(ENCRYPTED_MEDIA)
    12551255
     1256# For internal features:
     1257# The type should be boolean.
     1258# You must provide a humanReadableName and humanReadableDescription for all debug features. They
     1259#   are the text exposed to the user from the WebKit client.
     1260
     1261ExperimentalPlugInSandboxProfilesEnabled:
     1262  type: bool
     1263  defaultValue: false
     1264  humanReadableName: "Sandbox Plug-Ins"
     1265  humanReadableDescription: "Enable Plug-In sandboxing"
     1266  category: internal
     1267  webcoreBinding: RuntimeEnabledFeatures
     1268  webcoreName: experimentalPlugInSandboxProfilesEnabled
     1269
     1270ProcessSwapOnCrossSiteNavigationEnabled:
     1271  type: bool
     1272  defaultValue: false
     1273  humanReadableName: "Swap Processes on Cross-Site Navigation"
     1274  humanReadableDescription: "Swap WebContent processes on cross-site navigations"
     1275  category: internal
     1276  webcoreBinding: none
     1277
     1278ResourceLoadStatisticsDebugMode:
     1279  type: bool
     1280  defaultValue: false
     1281  humanReadableName: "ITP Debug Mode"
     1282  humanReadableDescription: "Intelligent Tracking Prevention Debug Mode"
     1283  category: internal
     1284  webcoreBinding: RuntimeEnabledFeatures
     1285
     1286ServiceWorkersEnabled:
     1287  type: bool
     1288  defaultValue: DEFAULT_SERVICE_WORKERS_ENABLED
     1289  humanReadableName: "Service Workers"
     1290  humanReadableDescription: "Enable Service Workers"
     1291  category: internal
     1292  webcoreBinding: RuntimeEnabledFeatures
     1293  webcoreName: serviceWorkerEnabled
     1294  condition: ENABLE(SERVICE_WORKER)
     1295
     1296AsyncFrameScrollingEnabled:
     1297  type: bool
     1298  defaultValue: false
     1299  humanReadableName: "Async Frame Scrolling"
     1300  humanReadableDescription: "Perform frame scrolling in a dedicated thread or process"
     1301  category: internal
     1302
     1303MDNSICECandidatesEnabled:
     1304  type: bool
     1305  defaultValue: false
     1306  humanReadableName: "MDNS ICE candidates"
     1307  humanReadableDescription: "Enable MDNS ICE candidates"
     1308  webcoreBinding: RuntimeEnabledFeatures
     1309  category: internal
     1310  condition: ENABLE(WEB_RTC)
     1311
     1312FetchAPIKeepAliveEnabled:
     1313  type: bool
     1314  defaultValue: false
     1315  humanReadableName: "Fetch API Request KeepAlive"
     1316  humanReadableDescription: "Enable Fetch API Request KeepAlive"
     1317  category: internal
     1318  webcoreBinding: RuntimeEnabledFeatures
     1319  webcoreName: fetchAPIKeepAliveEnabled
     1320
     1321WebGLCompressedTextureASTCSupportEnabled:
     1322  type: bool
     1323  defaultValue: false
     1324  humanReadableName: "ASTC Texture Support"
     1325  humanReadableDescription: "Support for ASTC compressed texture formats in WebGL"
     1326  category: internal
     1327  webcoreBinding: RuntimeEnabledFeatures
     1328
    12561329FullScreenEnabled:
    12571330  type: bool
     
    12611334  humanReadableName: "Fullscreen API"
    12621335  humanReadableDescription: "Fullscreen API"
    1263   category: experimental
    1264 
    1265 # For internal features:
    1266 # The type should be boolean.
    1267 # You must provide a humanReadableName and humanReadableDescription for all debug features. They
    1268 #   are the text exposed to the user from the WebKit client.
    1269 
    1270 ExperimentalPlugInSandboxProfilesEnabled:
    1271   type: bool
    1272   defaultValue: false
    1273   humanReadableName: "Sandbox Plug-Ins"
    1274   humanReadableDescription: "Enable Plug-In sandboxing"
    12751336  category: internal
    1276   webcoreBinding: RuntimeEnabledFeatures
    1277   webcoreName: experimentalPlugInSandboxProfilesEnabled
    1278 
    1279 ProcessSwapOnCrossSiteNavigationEnabled:
    1280   type: bool
    1281   defaultValue: false
    1282   humanReadableName: "Swap Processes on Cross-Site Navigation"
    1283   humanReadableDescription: "Swap WebContent processes on cross-site navigations"
    1284   category: internal
    1285   webcoreBinding: none
    1286 
    1287 ResourceLoadStatisticsDebugMode:
    1288   type: bool
    1289   defaultValue: false
    1290   humanReadableName: "ITP Debug Mode"
    1291   humanReadableDescription: "Intelligent Tracking Prevention Debug Mode"
    1292   category: internal
    1293   webcoreBinding: RuntimeEnabledFeatures
    1294 
    1295 ServiceWorkersEnabled:
    1296   type: bool
    1297   defaultValue: DEFAULT_SERVICE_WORKERS_ENABLED
    1298   humanReadableName: "Service Workers"
    1299   humanReadableDescription: "Enable Service Workers"
    1300   category: internal
    1301   webcoreBinding: RuntimeEnabledFeatures
    1302   webcoreName: serviceWorkerEnabled
    1303   condition: ENABLE(SERVICE_WORKER)
    1304 
    1305 AsyncFrameScrollingEnabled:
    1306   type: bool
    1307   defaultValue: false
    1308   humanReadableName: "Async Frame Scrolling"
    1309   humanReadableDescription: "Perform frame scrolling in a dedicated thread or process"
    1310   category: internal
    1311 
    1312 MDNSICECandidatesEnabled:
    1313   type: bool
    1314   defaultValue: false
    1315   humanReadableName: "MDNS ICE candidates"
    1316   humanReadableDescription: "Enable MDNS ICE candidates"
    1317   webcoreBinding: RuntimeEnabledFeatures
    1318   category: internal
    1319   condition: ENABLE(WEB_RTC)
    1320 
    1321 FetchAPIKeepAliveEnabled:
    1322   type: bool
    1323   defaultValue: false
    1324   humanReadableName: "Fetch API Request KeepAlive"
    1325   humanReadableDescription: "Enable Fetch API Request KeepAlive"
    1326   category: internal
    1327   webcoreBinding: RuntimeEnabledFeatures
    1328   webcoreName: fetchAPIKeepAliveEnabled
    1329 
    1330 WebGLCompressedTextureASTCSupportEnabled:
    1331   type: bool
    1332   defaultValue: false
    1333   humanReadableName: "ASTC Texture Support"
    1334   humanReadableDescription: "Support for ASTC compressed texture formats in WebGL"
    1335   category: internal
    1336   webcoreBinding: RuntimeEnabledFeatures
    13371337
    13381338AriaReflectionEnabled:
Note: See TracChangeset for help on using the changeset viewer.