⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 267449 in webkit


Ignore:
Timestamp:
Sep 22, 2020, 5:20:14 PM (6 years ago)
Author:
weinig@apple.com
Message:

[WebIDL] Switch to new file name convention for partial interfaces
https://bugs.webkit.org/show_bug.cgi?id=216843

Reviewed by Tim Horton.

Updates all 'partial interface' IDLs to use the new naming convention adopted
in https://webkit.org/b/216729, where they are name as the construction of the
base interface '+' the supplementing spec. So, additions to Document from the
Web Animations spec becomes Document+WebAnimations.idl.

  • accessibility/AccessibilityRenderObject.cpp:
  • bindings/js/JSDocumentCustom.cpp:
  • bindings/js/JSXMLDocumentCustom.cpp:
  • html/HTMLFrameOwnerElement.h:
  • loader/FrameLoader.cpp:
  • page/FrameView.cpp:
  • svg/DocumentSVG.cpp: Added.
  • svg/DocumentSVG.h: Added.
  • svg/SVGDocument.cpp:
  • svg/SVGDocument.h:
  • svg/SVGTRefElement.cpp:
  • svg/graphics/SVGImage.cpp:
  • style/StyleAdjuster.cpp:
  • svg/Document+SVG.idl: Added.
  • svg/SVGDocument.idl: Removed.

Fix weirdness around SVGDocument. Previously, additions to the Document
interface were in a class that was also a document subclass. Now the two
are split, so the additions are in DocumentSVG.h/cpp, matching convention,
and the subclass remains SVGDocument.h/cpp, also matching convention.

  • CMakeLists.txt:
  • DerivedSources-input.xcfilelist:
  • DerivedSources-output.xcfilelist:
  • DerivedSources.make:
  • Sources.txt:
  • WebCore.xcodeproj/project.pbxproj:

Update for renames.

  • Modules/async-clipboard/Navigator+Clipboard.idl: Added.
  • Modules/async-clipboard/NavigatorClipboard.idl: Removed.
  • Modules/beacon/Navigator+Beacon.idl: Added.
  • Modules/beacon/NavigatorBeacon.idl: Removed.
  • Modules/cache/DOMWindow+Caches.idl: Added.
  • Modules/cache/DOMWindowCaches.idl: Removed.
  • Modules/cache/WorkerGlobalScope+Caches.idl: Added.
  • Modules/cache/WorkerGlobalScopeCaches.idl: Removed.
  • Modules/credentialmanagement/Navigator+Credentials.idl: Added.
  • Modules/credentialmanagement/NavigatorCredentials.idl: Removed.
  • Modules/encryptedmedia/Navigator+EME.idl: Added.
  • Modules/encryptedmedia/NavigatorEME.idl: Removed.
  • Modules/entriesapi/HTMLInputElement+EntriesAPI.idl: Added.
  • Modules/entriesapi/HTMLInputElementEntriesAPI.idl: Removed.
  • Modules/fetch/WindowOrWorkerGlobalScope+Fetch.idl: Added.
  • Modules/fetch/WindowOrWorkerGlobalScopeFetch.idl: Removed.
  • Modules/gamepad/Navigator+Gamepad.idl: Added.
  • Modules/gamepad/NavigatorGamepad.idl: Removed.
  • Modules/geolocation/Navigator+Geolocation.idl: Added.
  • Modules/geolocation/NavigatorGeolocation.idl: Removed.
  • Modules/indexeddb/DOMWindow+IndexedDatabase.idl: Added.
  • Modules/indexeddb/DOMWindowIndexedDatabase.idl: Removed.
  • Modules/indexeddb/WorkerGlobalScope+IndexedDatabase.idl: Added.
  • Modules/indexeddb/WorkerGlobalScopeIndexedDatabase.idl: Removed.
  • Modules/mediacapabilities/Navigator+MediaCapabilities.idl: Added.
  • Modules/mediacapabilities/NavigatorMediaCapabilities.idl: Removed.
  • Modules/mediasession/HTMLMediaElement+MediaSession.idl: Added.
  • Modules/mediasession/HTMLMediaElementMediaSession.idl: Removed.
  • Modules/mediasource/AudioTrack+MediaSource.idl: Added.
  • Modules/mediasource/AudioTrackMediaSource.idl: Removed.
  • Modules/mediasource/DOMURL+MediaSource.idl: Added.
  • Modules/mediasource/DOMURLMediaSource.idl: Removed.
  • Modules/mediasource/TextTrack+MediaSource.idl: Added.
  • Modules/mediasource/TextTrackMediaSource.idl: Removed.
  • Modules/mediasource/VideoTrack+MediaSource.idl: Added.
  • Modules/mediasource/VideoTrackMediaSource.idl: Removed.
  • Modules/mediastream/Navigator+MediaDevices.idl: Added.
  • Modules/mediastream/NavigatorMediaDevices.idl: Removed.
  • Modules/pictureinpicture/Document+PictureInPicture.idl: Added.
  • Modules/pictureinpicture/DocumentOrShadowRoot+PictureInPicture.idl: Added.
  • Modules/pictureinpicture/DocumentOrShadowRootPictureInPicture.idl: Removed.
  • Modules/pictureinpicture/DocumentPictureInPicture.idl: Removed.
  • Modules/pictureinpicture/HTMLVideoElement+PictureInPicture.idl: Added.
  • Modules/pictureinpicture/HTMLVideoElementPictureInPicture.idl: Removed.
  • Modules/quota/DOMWindow+Quota.idl: Added.
  • Modules/quota/DOMWindowQuota.idl: Removed.
  • Modules/quota/Navigator+StorageQuota.idl: Added.
  • Modules/quota/NavigatorStorageQuota.idl: Removed.
  • Modules/quota/WorkerNavigator+StorageQuota.idl: Added.
  • Modules/quota/WorkerNavigatorStorageQuota.idl: Removed.
  • Modules/remoteplayback/HTMLMediaElement+RemotePlayback.idl: Added.
  • Modules/remoteplayback/HTMLMediaElementRemotePlayback.idl: Removed.
  • Modules/speech/DOMWindow+SpeechSynthesis.idl: Added.
  • Modules/speech/DOMWindowSpeechSynthesis.idl: Removed.
  • Modules/webdatabase/DOMWindow+WebDatabase.idl: Added.
  • Modules/webdatabase/DOMWindowWebDatabase.idl: Removed.
  • Modules/webdriver/Navigator+WebDriver.idl: Added.
  • Modules/webdriver/NavigatorWebDriver.idl: Removed.
  • Modules/webgpu/Navigator+GPU.idl: Added.
  • Modules/webgpu/NavigatorGPU.idl: Removed.
  • Modules/webgpu/WorkerNavigator+GPU.idl: Added.
  • Modules/webgpu/WorkerNavigatorGPU.idl: Removed.
  • Modules/webxr/Navigator+WebXR.idl: Added.
  • Modules/webxr/NavigatorWebXR.idl: Removed.
  • animation/Document+WebAnimations.idl: Added.
  • animation/DocumentAnimations.idl: Removed.
  • animation/DocumentOrShadowRoot+WebAnimations.idl: Added.
  • animation/DocumentOrShadowRootAnimations.idl: Removed.
  • animation/GlobalEventHandlers+CSSAnimations.idl: Added.
  • animation/GlobalEventHandlers+CSSTransitions.idl: Added.
  • animation/GlobalEventHandlersCSSAnimations.idl: Removed.
  • animation/GlobalEventHandlersCSSTransitions.idl: Removed.
  • css/DOMCSSNamespace+CSSPainting.idl: Added.
  • css/DOMCSSNamespace+CSSPropertiesandValues.idl: Added.
  • css/DOMCSSPaintWorklet.idl: Removed.
  • css/DOMCSSRegisterCustomProperty.idl: Removed.
  • css/DocumentOrShadowRoot+CSSOM.idl: Added.
  • css/DocumentOrShadowRootStyleSheets.idl: Removed.
  • dom/Document+CSSOMView.idl: Added.
  • dom/Document+Fullscreen.idl: Added.
  • dom/Document+HTML.idl: Added.
  • dom/Document+HTMLObsolete.idl: Added.
  • dom/Document+PageVisibility.idl: Added.
  • dom/Document+PointerLock.idl: Added.
  • dom/Document+Selection.idl: Added.
  • dom/Document+StorageAccess.idl: Added.
  • dom/Document+Touch.idl: Added.
  • dom/Document+UndoMananger.idl: Added.
  • dom/DocumentFullscreen.idl: Removed.
  • dom/DocumentHTML.idl: Removed.
  • dom/DocumentHTMLObsolete.idl: Removed.
  • dom/DocumentOrShadowRoot+PointerLock.idl: Added.
  • dom/DocumentOrShadowRootPointerLock.idl: Removed.
  • dom/DocumentPageVisibility.idl: Removed.
  • dom/DocumentPointerLock.idl: Removed.
  • dom/DocumentScrolling.idl: Removed.
  • dom/DocumentSelection.idl: Removed.
  • dom/DocumentStorageAccess.idl: Removed.
  • dom/DocumentTouch.idl: Removed.
  • dom/DocumentUndoMananger.idl: Removed.
  • dom/Element+DOMParsing.idl: Added.
  • dom/ElementDOMParsing.idl: Removed.
  • dom/GlobalEventHandlers+PointerEvents.idl: Added.
  • dom/GlobalEventHandlersPointerEvents.idl: Removed.
  • page/Navigator+IsLoggedIn.idl: Added.
  • page/NavigatorIsLoggedIn.idl: Removed.

Rename IDLs.

Location:
trunk/Source/WebCore
Files:
21 edited
2 copied
54 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/CMakeLists.txt

    r267408 r267449  
    226226    Modules/async-clipboard/Clipboard.idl
    227227    Modules/async-clipboard/ClipboardItem.idl
    228     Modules/async-clipboard/NavigatorClipboard.idl
    229 
    230     Modules/beacon/NavigatorBeacon.idl
     228    Modules/async-clipboard/Navigator+Clipboard.idl
     229
     230    Modules/beacon/Navigator+Beacon.idl
    231231
    232232    Modules/cache/CacheQueryOptions.idl
    233233    Modules/cache/DOMCache.idl
    234234    Modules/cache/DOMCacheStorage.idl
    235     Modules/cache/DOMWindowCaches.idl
    236     Modules/cache/WorkerGlobalScopeCaches.idl
     235    Modules/cache/DOMWindow+Caches.idl
     236    Modules/cache/WorkerGlobalScope+Caches.idl
    237237
    238238    Modules/credentialmanagement/BasicCredential.idl
     
    240240    Modules/credentialmanagement/CredentialRequestOptions.idl
    241241    Modules/credentialmanagement/CredentialsContainer.idl
    242     Modules/credentialmanagement/NavigatorCredentials.idl
     242    Modules/credentialmanagement/Navigator+Credentials.idl
    243243
    244244    Modules/encryptedmedia/MediaKeyEncryptionScheme.idl
     
    252252    Modules/encryptedmedia/MediaKeys.idl
    253253    Modules/encryptedmedia/MediaKeysRequirement.idl
    254     Modules/encryptedmedia/NavigatorEME.idl
     254    Modules/encryptedmedia/Navigator+EME.idl
    255255
    256256    Modules/entriesapi/DOMFileSystem.idl
     
    263263    Modules/entriesapi/FileSystemEntryCallback.idl
    264264    Modules/entriesapi/FileSystemFileEntry.idl
    265     Modules/entriesapi/HTMLInputElementEntriesAPI.idl
     265    Modules/entriesapi/HTMLInputElement+EntriesAPI.idl
    266266
    267267    Modules/fetch/FetchBody.idl
     
    275275    Modules/fetch/FetchRequestRedirect.idl
    276276    Modules/fetch/FetchResponse.idl
    277     Modules/fetch/WindowOrWorkerGlobalScopeFetch.idl
     277    Modules/fetch/WindowOrWorkerGlobalScope+Fetch.idl
    278278
    279279    Modules/geolocation/Geolocation.idl
     
    281281    Modules/geolocation/GeolocationPosition.idl
    282282    Modules/geolocation/GeolocationPositionError.idl
    283     Modules/geolocation/NavigatorGeolocation.idl
     283    Modules/geolocation/Navigator+Geolocation.idl
    284284    Modules/geolocation/PositionCallback.idl
    285285    Modules/geolocation/PositionErrorCallback.idl
     
    289289    Modules/highlight/HighlightRangeGroup.idl
    290290
    291     Modules/indexeddb/DOMWindowIndexedDatabase.idl
     291    Modules/indexeddb/DOMWindow+IndexedDatabase.idl
    292292    Modules/indexeddb/IDBCursor.idl
    293293    Modules/indexeddb/IDBCursorDirection.idl
     
    303303    Modules/indexeddb/IDBTransactionMode.idl
    304304    Modules/indexeddb/IDBVersionChangeEvent.idl
    305     Modules/indexeddb/WorkerGlobalScopeIndexedDatabase.idl
     305    Modules/indexeddb/WorkerGlobalScope+IndexedDatabase.idl
    306306
    307307    Modules/mediacapabilities/AudioConfiguration.idl
     
    317317    Modules/mediacapabilities/MediaEncodingConfiguration.idl
    318318    Modules/mediacapabilities/MediaEncodingType.idl
    319     Modules/mediacapabilities/NavigatorMediaCapabilities.idl
     319    Modules/mediacapabilities/Navigator+MediaCapabilities.idl
    320320    Modules/mediacapabilities/TransferFunction.idl
    321321    Modules/mediacapabilities/VideoConfiguration.idl
     
    327327    Modules/mediarecorder/MediaRecorderErrorEvent.idl
    328328
    329     Modules/mediasession/HTMLMediaElementMediaSession.idl
     329    Modules/mediasession/HTMLMediaElement+MediaSession.idl
    330330    Modules/mediasession/MediaRemoteControls.idl
    331331    Modules/mediasession/MediaSession.idl
    332332
    333     Modules/mediasource/AudioTrackMediaSource.idl
    334     Modules/mediasource/DOMURLMediaSource.idl
     333    Modules/mediasource/AudioTrack+MediaSource.idl
     334    Modules/mediasource/DOMURL+MediaSource.idl
    335335    Modules/mediasource/MediaSource.idl
    336336    Modules/mediasource/SourceBuffer.idl
    337337    Modules/mediasource/SourceBufferList.idl
    338     Modules/mediasource/TextTrackMediaSource.idl
     338    Modules/mediasource/TextTrack+MediaSource.idl
    339339    Modules/mediasource/VideoPlaybackQuality.idl
    340     Modules/mediasource/VideoTrackMediaSource.idl
     340    Modules/mediasource/VideoTrack+MediaSource.idl
    341341
    342342    Modules/mediastream/CanvasCaptureMediaStreamTrack.idl
     
    350350    Modules/mediastream/MediaTrackConstraints.idl
    351351    Modules/mediastream/MediaTrackSupportedConstraints.idl
    352     Modules/mediastream/NavigatorMediaDevices.idl
     352    Modules/mediastream/Navigator+MediaDevices.idl
    353353    Modules/mediastream/OverconstrainedError.idl
    354354    Modules/mediastream/OverconstrainedErrorEvent.idl
     
    428428    Modules/paymentrequest/PaymentValidationErrors.idl
    429429
    430     Modules/pictureinpicture/DocumentOrShadowRootPictureInPicture.idl
    431     Modules/pictureinpicture/DocumentPictureInPicture.idl
     430    Modules/pictureinpicture/Document+PictureInPicture.idl
     431    Modules/pictureinpicture/DocumentOrShadowRoot+PictureInPicture.idl
    432432    Modules/pictureinpicture/EnterPictureInPictureEvent.idl
    433     Modules/pictureinpicture/HTMLVideoElementPictureInPicture.idl
     433    Modules/pictureinpicture/HTMLVideoElement+PictureInPicture.idl
    434434    Modules/pictureinpicture/PictureInPictureWindow.idl
    435435
     
    437437    Modules/remoteplayback/RemotePlaybackAvailabilityCallback.idl
    438438
    439     Modules/speech/DOMWindowSpeechSynthesis.idl
     439    Modules/speech/DOMWindow+SpeechSynthesis.idl
    440440    Modules/speech/SpeechSynthesis.idl
    441441    Modules/speech/SpeechSynthesisEvent.idl
     
    548548    Modules/webauthn/UserVerificationRequirement.idl
    549549
    550     Modules/webdatabase/DOMWindowWebDatabase.idl
     550    Modules/webdatabase/DOMWindow+WebDatabase.idl
    551551    Modules/webdatabase/Database.idl
    552552    Modules/webdatabase/DatabaseCallback.idl
     
    560560    Modules/webdatabase/SQLTransactionErrorCallback.idl
    561561
    562     Modules/webdriver/NavigatorWebDriver.idl
     562    Modules/webdriver/Navigator+WebDriver.idl
    563563
    564564    Modules/webgpu/GPUBindGroupLayoutBinding.idl
     
    590590    Modules/webgpu/GPUVertexBufferDescriptor.idl
    591591    Modules/webgpu/GPUVertexInputDescriptor.idl
    592     Modules/webgpu/NavigatorGPU.idl
     592    Modules/webgpu/Navigator+GPU.idl
    593593    Modules/webgpu/WebGPU.idl
    594594    Modules/webgpu/WebGPUAdapter.idl
     
    623623    Modules/webgpu/WebGPUTexture.idl
    624624    Modules/webgpu/WebGPUTextureView.idl
    625     Modules/webgpu/WorkerNavigatorGPU.idl
     625    Modules/webgpu/WorkerNavigator+GPU.idl
    626626
    627627    Modules/websockets/CloseEvent.idl
     
    643643    animation/CompositeOperationOrAuto.idl
    644644    animation/ComputedEffectTiming.idl
    645     animation/DocumentAnimations.idl
    646     animation/DocumentOrShadowRootAnimations.idl
     645    animation/Document+WebAnimations.idl
     646    animation/DocumentOrShadowRoot+WebAnimations.idl
    647647    animation/DocumentTimeline.idl
    648648    animation/DocumentTimelineOptions.idl
    649649    animation/FillMode.idl
    650650    animation/GetAnimationsOptions.idl
    651     animation/GlobalEventHandlersCSSAnimations.idl
    652     animation/GlobalEventHandlersCSSTransitions.idl
     651    animation/GlobalEventHandlers+CSSAnimations.idl
     652    animation/GlobalEventHandlers+CSSTransitions.idl
    653653    animation/IterationCompositeOperation.idl
    654654    animation/KeyframeAnimationOptions.idl
     
    706706    css/CSSSupportsRule.idl
    707707    css/CSSUnknownRule.idl
    708     css/DocumentOrShadowRootStyleSheets.idl
     708    css/DocumentOrShadowRoot+CSSOM.idl
    709709    css/DOMCSSCustomPropertyDescriptor.idl
     710    css/DOMCSSNamespace+CSSPainting.idl
     711    css/DOMCSSNamespace+CSSPropertiesandValues.idl
    710712    css/DOMCSSNamespace.idl
    711     css/DOMCSSPaintWorklet.idl
    712     css/DOMCSSRegisterCustomProperty.idl
    713713    css/DOMMatrix.idl
    714714    css/DOMMatrix2DInit.idl
     
    776776    dom/DeviceOrientationEvent.idl
    777777    dom/DeviceOrientationOrMotionPermissionState.idl
     778    dom/Document+CSSOMView.idl
     779    dom/Document+Fullscreen.idl
     780    dom/Document+HTML.idl
     781    dom/Document+HTMLObsolete.idl
     782    dom/Document+PageVisibility.idl
     783    dom/Document+PointerLock.idl
     784    dom/Document+Selection.idl
     785    dom/Document+StorageAccess.idl
     786    dom/Document+Touch.idl
     787    dom/Document+UndoMananger.idl
    778788    dom/Document.idl
    779789    dom/DocumentAndElementEventHandlers.idl
    780790    dom/DocumentFragment.idl
    781     dom/DocumentFullscreen.idl
    782     dom/DocumentHTML.idl
    783     dom/DocumentHTMLObsolete.idl
     791    dom/DocumentOrShadowRoot+PointerLock.idl
    784792    dom/DocumentOrShadowRoot.idl
    785     dom/DocumentOrShadowRootPointerLock.idl
    786     dom/DocumentPageVisibility.idl
    787     dom/DocumentPointerLock.idl
    788     dom/DocumentScrolling.idl
    789     dom/DocumentSelection.idl
    790     dom/DocumentStorageAccess.idl
    791     dom/DocumentTouch.idl
    792793    dom/DocumentType.idl
    793     dom/DocumentUndoMananger.idl
    794794    dom/DragEvent.idl
     795    dom/Element+DOMParsing.idl
    795796    dom/Element.idl
    796     dom/ElementDOMParsing.idl
    797797    dom/ErrorEvent.idl
    798798    dom/Event.idl
     
    801801    dom/EventTarget.idl
    802802    dom/FocusEvent.idl
     803    dom/GlobalEventHandlers+PointerEvents.idl
    803804    dom/GlobalEventHandlers.idl
    804     dom/GlobalEventHandlersPointerEvents.idl
    805805    dom/HashChangeEvent.idl
    806806    dom/IdleDeadline.idl
     
    11371137
    11381138set(WebCore_SVG_IDL_FILES
     1139    svg/Document+SVG.idl
    11391140    svg/SVGAElement.idl
    11401141    svg/SVGAltGlyphDefElement.idl
     
    11651166    svg/SVGDefsElement.idl
    11661167    svg/SVGDescElement.idl
    1167     svg/SVGDocument.idl
    11681168    svg/SVGElement.idl
    11691169    svg/SVGEllipseElement.idl
     
    12951295    Modules/gamepad/GamepadButton.idl
    12961296    Modules/gamepad/GamepadEvent.idl
    1297     Modules/gamepad/NavigatorGamepad.idl
     1297    Modules/gamepad/Navigator+Gamepad.idl
    12981298)
    12991299
     
    13121312
    13131313list(APPEND WebCore_NON_SVG_IDL_FILES
    1314     Modules/webxr/NavigatorWebXR.idl
     1314    Modules/webxr/Navigator+WebXR.idl
    13151315    Modules/webxr/WebXRBoundedReferenceSpace.idl
    13161316    Modules/webxr/WebXRFrame.idl
     
    15591559
    15601560list(APPEND WebCore_IDL_FILES
    1561     Modules/quota/DOMWindowQuota.idl
    1562     Modules/quota/NavigatorStorageQuota.idl
     1561    Modules/quota/DOMWindow+Quota.idl
     1562    Modules/quota/Navigator+StorageQuota.idl
    15631563    Modules/quota/StorageErrorCallback.idl
    15641564    Modules/quota/StorageInfo.idl
     
    15661566    Modules/quota/StorageQuotaCallback.idl
    15671567    Modules/quota/StorageUsageCallback.idl
    1568     Modules/quota/WorkerNavigatorStorageQuota.idl
     1568    Modules/quota/WorkerNavigator+StorageQuota.idl
    15691569)
    15701570
  • trunk/Source/WebCore/ChangeLog

    r267446 r267449  
     12020-09-22  Sam Weinig  <weinig@apple.com>
     2
     3        [WebIDL] Switch to new file name convention for partial interfaces
     4        https://bugs.webkit.org/show_bug.cgi?id=216843
     5
     6        Reviewed by Tim Horton.
     7
     8        Updates all 'partial interface' IDLs to use the new naming convention adopted
     9        in https://webkit.org/b/216729, where they are name as the construction of the
     10        base interface '+' the supplementing spec. So, additions to Document from the
     11        Web Animations spec becomes Document+WebAnimations.idl.
     12       
     13        * accessibility/AccessibilityRenderObject.cpp:
     14        * bindings/js/JSDocumentCustom.cpp:
     15        * bindings/js/JSXMLDocumentCustom.cpp:
     16        * html/HTMLFrameOwnerElement.h:
     17        * loader/FrameLoader.cpp:
     18        * page/FrameView.cpp:
     19        * svg/DocumentSVG.cpp: Added.
     20        * svg/DocumentSVG.h: Added.
     21        * svg/SVGDocument.cpp:
     22        * svg/SVGDocument.h:
     23        * svg/SVGTRefElement.cpp:
     24        * svg/graphics/SVGImage.cpp:
     25        * style/StyleAdjuster.cpp:
     26        * svg/Document+SVG.idl: Added.
     27        * svg/SVGDocument.idl: Removed.
     28        Fix weirdness around SVGDocument. Previously, additions to the Document
     29        interface were in a class that was also a document subclass. Now the two
     30        are split, so the additions are in DocumentSVG.h/cpp, matching convention,
     31        and the subclass remains SVGDocument.h/cpp, also matching convention.
     32
     33        * CMakeLists.txt:
     34        * DerivedSources-input.xcfilelist:
     35        * DerivedSources-output.xcfilelist:
     36        * DerivedSources.make:
     37        * Sources.txt:
     38        * WebCore.xcodeproj/project.pbxproj:
     39        Update for renames.
     40
     41        * Modules/async-clipboard/Navigator+Clipboard.idl: Added.
     42        * Modules/async-clipboard/NavigatorClipboard.idl: Removed.
     43        * Modules/beacon/Navigator+Beacon.idl: Added.
     44        * Modules/beacon/NavigatorBeacon.idl: Removed.
     45        * Modules/cache/DOMWindow+Caches.idl: Added.
     46        * Modules/cache/DOMWindowCaches.idl: Removed.
     47        * Modules/cache/WorkerGlobalScope+Caches.idl: Added.
     48        * Modules/cache/WorkerGlobalScopeCaches.idl: Removed.
     49        * Modules/credentialmanagement/Navigator+Credentials.idl: Added.
     50        * Modules/credentialmanagement/NavigatorCredentials.idl: Removed.
     51        * Modules/encryptedmedia/Navigator+EME.idl: Added.
     52        * Modules/encryptedmedia/NavigatorEME.idl: Removed.
     53        * Modules/entriesapi/HTMLInputElement+EntriesAPI.idl: Added.
     54        * Modules/entriesapi/HTMLInputElementEntriesAPI.idl: Removed.
     55        * Modules/fetch/WindowOrWorkerGlobalScope+Fetch.idl: Added.
     56        * Modules/fetch/WindowOrWorkerGlobalScopeFetch.idl: Removed.
     57        * Modules/gamepad/Navigator+Gamepad.idl: Added.
     58        * Modules/gamepad/NavigatorGamepad.idl: Removed.
     59        * Modules/geolocation/Navigator+Geolocation.idl: Added.
     60        * Modules/geolocation/NavigatorGeolocation.idl: Removed.
     61        * Modules/indexeddb/DOMWindow+IndexedDatabase.idl: Added.
     62        * Modules/indexeddb/DOMWindowIndexedDatabase.idl: Removed.
     63        * Modules/indexeddb/WorkerGlobalScope+IndexedDatabase.idl: Added.
     64        * Modules/indexeddb/WorkerGlobalScopeIndexedDatabase.idl: Removed.
     65        * Modules/mediacapabilities/Navigator+MediaCapabilities.idl: Added.
     66        * Modules/mediacapabilities/NavigatorMediaCapabilities.idl: Removed.
     67        * Modules/mediasession/HTMLMediaElement+MediaSession.idl: Added.
     68        * Modules/mediasession/HTMLMediaElementMediaSession.idl: Removed.
     69        * Modules/mediasource/AudioTrack+MediaSource.idl: Added.
     70        * Modules/mediasource/AudioTrackMediaSource.idl: Removed.
     71        * Modules/mediasource/DOMURL+MediaSource.idl: Added.
     72        * Modules/mediasource/DOMURLMediaSource.idl: Removed.
     73        * Modules/mediasource/TextTrack+MediaSource.idl: Added.
     74        * Modules/mediasource/TextTrackMediaSource.idl: Removed.
     75        * Modules/mediasource/VideoTrack+MediaSource.idl: Added.
     76        * Modules/mediasource/VideoTrackMediaSource.idl: Removed.
     77        * Modules/mediastream/Navigator+MediaDevices.idl: Added.
     78        * Modules/mediastream/NavigatorMediaDevices.idl: Removed.
     79        * Modules/pictureinpicture/Document+PictureInPicture.idl: Added.
     80        * Modules/pictureinpicture/DocumentOrShadowRoot+PictureInPicture.idl: Added.
     81        * Modules/pictureinpicture/DocumentOrShadowRootPictureInPicture.idl: Removed.
     82        * Modules/pictureinpicture/DocumentPictureInPicture.idl: Removed.
     83        * Modules/pictureinpicture/HTMLVideoElement+PictureInPicture.idl: Added.
     84        * Modules/pictureinpicture/HTMLVideoElementPictureInPicture.idl: Removed.
     85        * Modules/quota/DOMWindow+Quota.idl: Added.
     86        * Modules/quota/DOMWindowQuota.idl: Removed.
     87        * Modules/quota/Navigator+StorageQuota.idl: Added.
     88        * Modules/quota/NavigatorStorageQuota.idl: Removed.
     89        * Modules/quota/WorkerNavigator+StorageQuota.idl: Added.
     90        * Modules/quota/WorkerNavigatorStorageQuota.idl: Removed.
     91        * Modules/remoteplayback/HTMLMediaElement+RemotePlayback.idl: Added.
     92        * Modules/remoteplayback/HTMLMediaElementRemotePlayback.idl: Removed.
     93        * Modules/speech/DOMWindow+SpeechSynthesis.idl: Added.
     94        * Modules/speech/DOMWindowSpeechSynthesis.idl: Removed.
     95        * Modules/webdatabase/DOMWindow+WebDatabase.idl: Added.
     96        * Modules/webdatabase/DOMWindowWebDatabase.idl: Removed.
     97        * Modules/webdriver/Navigator+WebDriver.idl: Added.
     98        * Modules/webdriver/NavigatorWebDriver.idl: Removed.
     99        * Modules/webgpu/Navigator+GPU.idl: Added.
     100        * Modules/webgpu/NavigatorGPU.idl: Removed.
     101        * Modules/webgpu/WorkerNavigator+GPU.idl: Added.
     102        * Modules/webgpu/WorkerNavigatorGPU.idl: Removed.
     103        * Modules/webxr/Navigator+WebXR.idl: Added.
     104        * Modules/webxr/NavigatorWebXR.idl: Removed.
     105        * animation/Document+WebAnimations.idl: Added.
     106        * animation/DocumentAnimations.idl: Removed.
     107        * animation/DocumentOrShadowRoot+WebAnimations.idl: Added.
     108        * animation/DocumentOrShadowRootAnimations.idl: Removed.
     109        * animation/GlobalEventHandlers+CSSAnimations.idl: Added.
     110        * animation/GlobalEventHandlers+CSSTransitions.idl: Added.
     111        * animation/GlobalEventHandlersCSSAnimations.idl: Removed.
     112        * animation/GlobalEventHandlersCSSTransitions.idl: Removed.
     113        * css/DOMCSSNamespace+CSSPainting.idl: Added.
     114        * css/DOMCSSNamespace+CSSPropertiesandValues.idl: Added.
     115        * css/DOMCSSPaintWorklet.idl: Removed.
     116        * css/DOMCSSRegisterCustomProperty.idl: Removed.
     117        * css/DocumentOrShadowRoot+CSSOM.idl: Added.
     118        * css/DocumentOrShadowRootStyleSheets.idl: Removed.
     119        * dom/Document+CSSOMView.idl: Added.
     120        * dom/Document+Fullscreen.idl: Added.
     121        * dom/Document+HTML.idl: Added.
     122        * dom/Document+HTMLObsolete.idl: Added.
     123        * dom/Document+PageVisibility.idl: Added.
     124        * dom/Document+PointerLock.idl: Added.
     125        * dom/Document+Selection.idl: Added.
     126        * dom/Document+StorageAccess.idl: Added.
     127        * dom/Document+Touch.idl: Added.
     128        * dom/Document+UndoMananger.idl: Added.
     129        * dom/DocumentFullscreen.idl: Removed.
     130        * dom/DocumentHTML.idl: Removed.
     131        * dom/DocumentHTMLObsolete.idl: Removed.
     132        * dom/DocumentOrShadowRoot+PointerLock.idl: Added.
     133        * dom/DocumentOrShadowRootPointerLock.idl: Removed.
     134        * dom/DocumentPageVisibility.idl: Removed.
     135        * dom/DocumentPointerLock.idl: Removed.
     136        * dom/DocumentScrolling.idl: Removed.
     137        * dom/DocumentSelection.idl: Removed.
     138        * dom/DocumentStorageAccess.idl: Removed.
     139        * dom/DocumentTouch.idl: Removed.
     140        * dom/DocumentUndoMananger.idl: Removed.
     141        * dom/Element+DOMParsing.idl: Added.
     142        * dom/ElementDOMParsing.idl: Removed.
     143        * dom/GlobalEventHandlers+PointerEvents.idl: Added.
     144        * dom/GlobalEventHandlersPointerEvents.idl: Removed.
     145        * page/Navigator+IsLoggedIn.idl: Added.
     146        * page/NavigatorIsLoggedIn.idl: Removed.
     147        Rename IDLs.
     148
    11492020-09-22  Zalan Bujtas  <zalan@apple.com>
    2150
  • trunk/Source/WebCore/DerivedSources-input.xcfilelist

    r267408 r267449  
    5858$(PROJECT_DIR)/Modules/async-clipboard/Clipboard.idl
    5959$(PROJECT_DIR)/Modules/async-clipboard/ClipboardItem.idl
    60 $(PROJECT_DIR)/Modules/async-clipboard/NavigatorClipboard.idl
    61 $(PROJECT_DIR)/Modules/beacon/NavigatorBeacon.idl
     60$(PROJECT_DIR)/Modules/async-clipboard/Navigator+Clipboard.idl
     61$(PROJECT_DIR)/Modules/beacon/Navigator+Beacon.idl
    6262$(PROJECT_DIR)/Modules/cache/CacheQueryOptions.idl
    6363$(PROJECT_DIR)/Modules/cache/DOMCache.idl
    6464$(PROJECT_DIR)/Modules/cache/DOMCacheStorage.idl
    65 $(PROJECT_DIR)/Modules/cache/DOMWindowCaches.idl
    66 $(PROJECT_DIR)/Modules/cache/WorkerGlobalScopeCaches.idl
     65$(PROJECT_DIR)/Modules/cache/DOMWindow+Caches.idl
     66$(PROJECT_DIR)/Modules/cache/WorkerGlobalScope+Caches.idl
    6767$(PROJECT_DIR)/Modules/credentialmanagement/BasicCredential.idl
    6868$(PROJECT_DIR)/Modules/credentialmanagement/CredentialCreationOptions.idl
    6969$(PROJECT_DIR)/Modules/credentialmanagement/CredentialRequestOptions.idl
    7070$(PROJECT_DIR)/Modules/credentialmanagement/CredentialsContainer.idl
    71 $(PROJECT_DIR)/Modules/credentialmanagement/NavigatorCredentials.idl
     71$(PROJECT_DIR)/Modules/credentialmanagement/Navigator+Credentials.idl
    7272$(PROJECT_DIR)/Modules/encryptedmedia/MediaKeyEncryptionScheme.idl
    7373$(PROJECT_DIR)/Modules/encryptedmedia/MediaKeyMessageEvent.idl
     
    8080$(PROJECT_DIR)/Modules/encryptedmedia/MediaKeys.idl
    8181$(PROJECT_DIR)/Modules/encryptedmedia/MediaKeysRequirement.idl
    82 $(PROJECT_DIR)/Modules/encryptedmedia/NavigatorEME.idl
     82$(PROJECT_DIR)/Modules/encryptedmedia/Navigator+EME.idl
    8383$(PROJECT_DIR)/Modules/encryptedmedia/legacy/WebKitMediaKeyMessageEvent.idl
    8484$(PROJECT_DIR)/Modules/encryptedmedia/legacy/WebKitMediaKeyNeededEvent.idl
     
    9494$(PROJECT_DIR)/Modules/entriesapi/FileSystemEntryCallback.idl
    9595$(PROJECT_DIR)/Modules/entriesapi/FileSystemFileEntry.idl
    96 $(PROJECT_DIR)/Modules/entriesapi/HTMLInputElementEntriesAPI.idl
     96$(PROJECT_DIR)/Modules/entriesapi/HTMLInputElement+EntriesAPI.idl
    9797$(PROJECT_DIR)/Modules/fetch/FetchBody.idl
    9898$(PROJECT_DIR)/Modules/fetch/FetchHeaders.idl
     
    105105$(PROJECT_DIR)/Modules/fetch/FetchRequestRedirect.idl
    106106$(PROJECT_DIR)/Modules/fetch/FetchResponse.idl
    107 $(PROJECT_DIR)/Modules/fetch/WindowOrWorkerGlobalScopeFetch.idl
     107$(PROJECT_DIR)/Modules/fetch/WindowOrWorkerGlobalScope+Fetch.idl
    108108$(PROJECT_DIR)/Modules/gamepad/Gamepad.idl
    109109$(PROJECT_DIR)/Modules/gamepad/GamepadButton.idl
    110110$(PROJECT_DIR)/Modules/gamepad/GamepadEvent.idl
    111 $(PROJECT_DIR)/Modules/gamepad/NavigatorGamepad.idl
     111$(PROJECT_DIR)/Modules/gamepad/Navigator+Gamepad.idl
    112112$(PROJECT_DIR)/Modules/geolocation/Coordinates.idl
    113113$(PROJECT_DIR)/Modules/geolocation/Geolocation.idl
     
    116116$(PROJECT_DIR)/Modules/geolocation/GeolocationPositionError.idl
    117117$(PROJECT_DIR)/Modules/geolocation/Geoposition.idl
    118 $(PROJECT_DIR)/Modules/geolocation/NavigatorGeolocation.idl
     118$(PROJECT_DIR)/Modules/geolocation/Navigator+Geolocation.idl
    119119$(PROJECT_DIR)/Modules/geolocation/PositionCallback.idl
    120120$(PROJECT_DIR)/Modules/geolocation/PositionError.idl
     
    123123$(PROJECT_DIR)/Modules/highlight/HighlightMap.idl
    124124$(PROJECT_DIR)/Modules/highlight/HighlightRangeGroup.idl
    125 $(PROJECT_DIR)/Modules/indexeddb/DOMWindowIndexedDatabase.idl
     125$(PROJECT_DIR)/Modules/indexeddb/DOMWindow+IndexedDatabase.idl
    126126$(PROJECT_DIR)/Modules/indexeddb/IDBCursor.idl
    127127$(PROJECT_DIR)/Modules/indexeddb/IDBCursorDirection.idl
     
    137137$(PROJECT_DIR)/Modules/indexeddb/IDBTransactionMode.idl
    138138$(PROJECT_DIR)/Modules/indexeddb/IDBVersionChangeEvent.idl
    139 $(PROJECT_DIR)/Modules/indexeddb/WorkerGlobalScopeIndexedDatabase.idl
     139$(PROJECT_DIR)/Modules/indexeddb/WorkerGlobalScope+IndexedDatabase.idl
    140140$(PROJECT_DIR)/Modules/mediacapabilities/AudioConfiguration.idl
    141141$(PROJECT_DIR)/Modules/mediacapabilities/ColorGamut.idl
     
    150150$(PROJECT_DIR)/Modules/mediacapabilities/MediaEncodingConfiguration.idl
    151151$(PROJECT_DIR)/Modules/mediacapabilities/MediaEncodingType.idl
    152 $(PROJECT_DIR)/Modules/mediacapabilities/NavigatorMediaCapabilities.idl
     152$(PROJECT_DIR)/Modules/mediacapabilities/Navigator+MediaCapabilities.idl
    153153$(PROJECT_DIR)/Modules/mediacapabilities/TransferFunction.idl
    154154$(PROJECT_DIR)/Modules/mediacapabilities/VideoConfiguration.idl
     
    157157$(PROJECT_DIR)/Modules/mediarecorder/MediaRecorder.idl
    158158$(PROJECT_DIR)/Modules/mediarecorder/MediaRecorderErrorEvent.idl
    159 $(PROJECT_DIR)/Modules/mediasession/HTMLMediaElementMediaSession.idl
     159$(PROJECT_DIR)/Modules/mediasession/HTMLMediaElement+MediaSession.idl
    160160$(PROJECT_DIR)/Modules/mediasession/MediaRemoteControls.idl
    161161$(PROJECT_DIR)/Modules/mediasession/MediaSession.idl
    162 $(PROJECT_DIR)/Modules/mediasource/AudioTrackMediaSource.idl
    163 $(PROJECT_DIR)/Modules/mediasource/DOMURLMediaSource.idl
     162$(PROJECT_DIR)/Modules/mediasource/AudioTrack+MediaSource.idl
     163$(PROJECT_DIR)/Modules/mediasource/DOMURL+MediaSource.idl
    164164$(PROJECT_DIR)/Modules/mediasource/MediaSource.idl
    165165$(PROJECT_DIR)/Modules/mediasource/SourceBuffer.idl
    166166$(PROJECT_DIR)/Modules/mediasource/SourceBufferList.idl
    167 $(PROJECT_DIR)/Modules/mediasource/TextTrackMediaSource.idl
     167$(PROJECT_DIR)/Modules/mediasource/TextTrack+MediaSource.idl
    168168$(PROJECT_DIR)/Modules/mediasource/VideoPlaybackQuality.idl
    169 $(PROJECT_DIR)/Modules/mediasource/VideoTrackMediaSource.idl
     169$(PROJECT_DIR)/Modules/mediasource/VideoTrack+MediaSource.idl
    170170$(PROJECT_DIR)/Modules/mediastream/CanvasCaptureMediaStreamTrack.idl
    171171$(PROJECT_DIR)/Modules/mediastream/DoubleRange.idl
     
    178178$(PROJECT_DIR)/Modules/mediastream/MediaTrackConstraints.idl
    179179$(PROJECT_DIR)/Modules/mediastream/MediaTrackSupportedConstraints.idl
    180 $(PROJECT_DIR)/Modules/mediastream/NavigatorMediaDevices.idl
     180$(PROJECT_DIR)/Modules/mediastream/Navigator+MediaDevices.idl
    181181$(PROJECT_DIR)/Modules/mediastream/OverconstrainedError.idl
    182182$(PROJECT_DIR)/Modules/mediastream/OverconstrainedErrorEvent.idl
     
    255255$(PROJECT_DIR)/Modules/paymentrequest/PaymentShippingType.idl
    256256$(PROJECT_DIR)/Modules/paymentrequest/PaymentValidationErrors.idl
    257 $(PROJECT_DIR)/Modules/pictureinpicture/DocumentOrShadowRootPictureInPicture.idl
    258 $(PROJECT_DIR)/Modules/pictureinpicture/DocumentPictureInPicture.idl
     257$(PROJECT_DIR)/Modules/pictureinpicture/Document+PictureInPicture.idl
     258$(PROJECT_DIR)/Modules/pictureinpicture/DocumentOrShadowRoot+PictureInPicture.idl
    259259$(PROJECT_DIR)/Modules/pictureinpicture/EnterPictureInPictureEvent.idl
    260 $(PROJECT_DIR)/Modules/pictureinpicture/HTMLVideoElementPictureInPicture.idl
     260$(PROJECT_DIR)/Modules/pictureinpicture/HTMLVideoElement+PictureInPicture.idl
    261261$(PROJECT_DIR)/Modules/pictureinpicture/PictureInPictureWindow.idl
    262262$(PROJECT_DIR)/Modules/plugins/QuickTimePluginReplacement.css
    263263$(PROJECT_DIR)/Modules/plugins/QuickTimePluginReplacement.idl
    264264$(PROJECT_DIR)/Modules/plugins/QuickTimePluginReplacement.js
    265 $(PROJECT_DIR)/Modules/quota/DOMWindowQuota.idl
    266 $(PROJECT_DIR)/Modules/quota/NavigatorStorageQuota.idl
     265$(PROJECT_DIR)/Modules/quota/DOMWindow+Quota.idl
     266$(PROJECT_DIR)/Modules/quota/Navigator+StorageQuota.idl
    267267$(PROJECT_DIR)/Modules/quota/StorageErrorCallback.idl
    268268$(PROJECT_DIR)/Modules/quota/StorageInfo.idl
     
    270270$(PROJECT_DIR)/Modules/quota/StorageQuotaCallback.idl
    271271$(PROJECT_DIR)/Modules/quota/StorageUsageCallback.idl
    272 $(PROJECT_DIR)/Modules/quota/WorkerNavigatorStorageQuota.idl
    273 $(PROJECT_DIR)/Modules/remoteplayback/HTMLMediaElementRemotePlayback.idl
     272$(PROJECT_DIR)/Modules/quota/WorkerNavigator+StorageQuota.idl
     273$(PROJECT_DIR)/Modules/remoteplayback/HTMLMediaElement+RemotePlayback.idl
    274274$(PROJECT_DIR)/Modules/remoteplayback/RemotePlayback.idl
    275275$(PROJECT_DIR)/Modules/remoteplayback/RemotePlaybackAvailabilityCallback.idl
    276 $(PROJECT_DIR)/Modules/speech/DOMWindowSpeechSynthesis.idl
     276$(PROJECT_DIR)/Modules/speech/DOMWindow+SpeechSynthesis.idl
    277277$(PROJECT_DIR)/Modules/speech/SpeechSynthesis.idl
    278278$(PROJECT_DIR)/Modules/speech/SpeechSynthesisEvent.idl
     
    399399$(PROJECT_DIR)/Modules/webauthn/PublicKeyCredentialType.idl
    400400$(PROJECT_DIR)/Modules/webauthn/UserVerificationRequirement.idl
    401 $(PROJECT_DIR)/Modules/webdatabase/DOMWindowWebDatabase.idl
     401$(PROJECT_DIR)/Modules/webdatabase/DOMWindow+WebDatabase.idl
    402402$(PROJECT_DIR)/Modules/webdatabase/Database.idl
    403403$(PROJECT_DIR)/Modules/webdatabase/DatabaseCallback.idl
     
    410410$(PROJECT_DIR)/Modules/webdatabase/SQLTransactionCallback.idl
    411411$(PROJECT_DIR)/Modules/webdatabase/SQLTransactionErrorCallback.idl
    412 $(PROJECT_DIR)/Modules/webdriver/NavigatorWebDriver.idl
    413 $(PROJECT_DIR)/Modules/webgpu/DOMWindowWebGPU.idl
     412$(PROJECT_DIR)/Modules/webdriver/Navigator+WebDriver.idl
    414413$(PROJECT_DIR)/Modules/webgpu/GPUBindGroupLayoutBinding.idl
    415414$(PROJECT_DIR)/Modules/webgpu/GPUBindGroupLayoutDescriptor.idl
     
    443442$(PROJECT_DIR)/Modules/webgpu/GPUVertexBufferDescriptor.idl
    444443$(PROJECT_DIR)/Modules/webgpu/GPUVertexInputDescriptor.idl
    445 $(PROJECT_DIR)/Modules/webgpu/NavigatorGPU.idl
     444$(PROJECT_DIR)/Modules/webgpu/Navigator+GPU.idl
    446445$(PROJECT_DIR)/Modules/webgpu/WHLSL/WHLSLBuildStandardLibraryFunctionMap.py
    447446$(PROJECT_DIR)/Modules/webgpu/WHLSL/WHLSLStandardLibrary.txt
     
    479478$(PROJECT_DIR)/Modules/webgpu/WebGPUTexture.idl
    480479$(PROJECT_DIR)/Modules/webgpu/WebGPUTextureView.idl
    481 $(PROJECT_DIR)/Modules/webgpu/WorkerNavigatorGPU.idl
     480$(PROJECT_DIR)/Modules/webgpu/WorkerNavigator+GPU.idl
    482481$(PROJECT_DIR)/Modules/websockets/CloseEvent.idl
    483482$(PROJECT_DIR)/Modules/websockets/WebSocket.idl
    484 $(PROJECT_DIR)/Modules/webxr/NavigatorWebXR.idl
     483$(PROJECT_DIR)/Modules/webxr/Navigator+WebXR.idl
    485484$(PROJECT_DIR)/Modules/webxr/WebXRBoundedReferenceSpace.idl
    486485$(PROJECT_DIR)/Modules/webxr/WebXRFrame.idl
     
    535534$(PROJECT_DIR)/animation/CompositeOperationOrAuto.idl
    536535$(PROJECT_DIR)/animation/ComputedEffectTiming.idl
    537 $(PROJECT_DIR)/animation/DocumentAnimations.idl
    538 $(PROJECT_DIR)/animation/DocumentOrShadowRootAnimations.idl
     536$(PROJECT_DIR)/animation/Document+WebAnimations.idl
     537$(PROJECT_DIR)/animation/DocumentOrShadowRoot+WebAnimations.idl
    539538$(PROJECT_DIR)/animation/DocumentTimeline.idl
    540539$(PROJECT_DIR)/animation/DocumentTimelineOptions.idl
     
    542541$(PROJECT_DIR)/animation/FillMode.idl
    543542$(PROJECT_DIR)/animation/GetAnimationsOptions.idl
    544 $(PROJECT_DIR)/animation/GlobalEventHandlersCSSAnimations.idl
    545 $(PROJECT_DIR)/animation/GlobalEventHandlersCSSTransitions.idl
     543$(PROJECT_DIR)/animation/GlobalEventHandlers+CSSAnimations.idl
     544$(PROJECT_DIR)/animation/GlobalEventHandlers+CSSTransitions.idl
    546545$(PROJECT_DIR)/animation/IterationCompositeOperation.idl
    547546$(PROJECT_DIR)/animation/KeyframeAnimationOptions.idl
     
    608607$(PROJECT_DIR)/css/CSSValueKeywords.in
    609608$(PROJECT_DIR)/css/DOMCSSCustomPropertyDescriptor.idl
     609$(PROJECT_DIR)/css/DOMCSSNamespace+CSSPainting.idl
     610$(PROJECT_DIR)/css/DOMCSSNamespace+CSSPropertiesandValues.idl
    610611$(PROJECT_DIR)/css/DOMCSSNamespace.idl
    611 $(PROJECT_DIR)/css/DOMCSSPaintWorklet.idl
    612 $(PROJECT_DIR)/css/DOMCSSRegisterCustomProperty.idl
    613612$(PROJECT_DIR)/css/DOMMatrix.idl
    614613$(PROJECT_DIR)/css/DOMMatrix2DInit.idl
     
    621620$(PROJECT_DIR)/css/DeprecatedCSSOMValue.idl
    622621$(PROJECT_DIR)/css/DeprecatedCSSOMValueList.idl
    623 $(PROJECT_DIR)/css/DocumentOrShadowRootStyleSheets.idl
     622$(PROJECT_DIR)/css/DocumentOrShadowRoot+CSSOM.idl
    624623$(PROJECT_DIR)/css/ElementCSSInlineStyle.idl
    625624$(PROJECT_DIR)/css/FontFace.idl
     
    693692$(PROJECT_DIR)/dom/DeviceOrientationOrMotionEvent.idl
    694693$(PROJECT_DIR)/dom/DeviceOrientationOrMotionPermissionState.idl
     694$(PROJECT_DIR)/dom/Document+CSSOMView.idl
     695$(PROJECT_DIR)/dom/Document+Fullscreen.idl
     696$(PROJECT_DIR)/dom/Document+HTML.idl
     697$(PROJECT_DIR)/dom/Document+HTMLObsolete.idl
     698$(PROJECT_DIR)/dom/Document+PageVisibility.idl
     699$(PROJECT_DIR)/dom/Document+PointerLock.idl
     700$(PROJECT_DIR)/dom/Document+Selection.idl
     701$(PROJECT_DIR)/dom/Document+StorageAccess.idl
     702$(PROJECT_DIR)/dom/Document+Touch.idl
     703$(PROJECT_DIR)/dom/Document+UndoMananger.idl
    695704$(PROJECT_DIR)/dom/Document.idl
    696705$(PROJECT_DIR)/dom/DocumentAndElementEventHandlers.idl
    697706$(PROJECT_DIR)/dom/DocumentFragment.idl
    698 $(PROJECT_DIR)/dom/DocumentFullscreen.idl
    699 $(PROJECT_DIR)/dom/DocumentHTML.idl
    700 $(PROJECT_DIR)/dom/DocumentHTMLObsolete.idl
     707$(PROJECT_DIR)/dom/DocumentOrShadowRoot+PointerLock.idl
    701708$(PROJECT_DIR)/dom/DocumentOrShadowRoot.idl
    702 $(PROJECT_DIR)/dom/DocumentOrShadowRootPointerLock.idl
    703 $(PROJECT_DIR)/dom/DocumentPageVisibility.idl
    704 $(PROJECT_DIR)/dom/DocumentPointerLock.idl
    705 $(PROJECT_DIR)/dom/DocumentScrolling.idl
    706 $(PROJECT_DIR)/dom/DocumentSelection.idl
    707 $(PROJECT_DIR)/dom/DocumentStorageAccess.idl
    708 $(PROJECT_DIR)/dom/DocumentTouch.idl
    709709$(PROJECT_DIR)/dom/DocumentType.idl
    710 $(PROJECT_DIR)/dom/DocumentUndoMananger.idl
    711710$(PROJECT_DIR)/dom/DragEvent.idl
     711$(PROJECT_DIR)/dom/Element+DOMParsing.idl
    712712$(PROJECT_DIR)/dom/Element.idl
    713 $(PROJECT_DIR)/dom/ElementDOMParsing.idl
    714713$(PROJECT_DIR)/dom/ErrorEvent.idl
    715714$(PROJECT_DIR)/dom/Event.idl
     
    721720$(PROJECT_DIR)/dom/EventTargetFactory.in
    722721$(PROJECT_DIR)/dom/FocusEvent.idl
     722$(PROJECT_DIR)/dom/GlobalEventHandlers+PointerEvents.idl
    723723$(PROJECT_DIR)/dom/GlobalEventHandlers.idl
    724 $(PROJECT_DIR)/dom/GlobalEventHandlersPointerEvents.idl
    725724$(PROJECT_DIR)/dom/HashChangeEvent.idl
    726725$(PROJECT_DIR)/dom/IdleDeadline.idl
     
    10191018$(PROJECT_DIR)/page/IntersectionObserverEntry.idl
    10201019$(PROJECT_DIR)/page/Location.idl
     1020$(PROJECT_DIR)/page/Navigator+IsLoggedIn.idl
    10211021$(PROJECT_DIR)/page/Navigator.idl
    10221022$(PROJECT_DIR)/page/NavigatorCookies.idl
    10231023$(PROJECT_DIR)/page/NavigatorID.idl
    1024 $(PROJECT_DIR)/page/NavigatorIsLoggedIn.idl
    10251024$(PROJECT_DIR)/page/NavigatorLanguage.idl
    10261025$(PROJECT_DIR)/page/NavigatorOnLine.idl
     
    10781077$(PROJECT_DIR)/storage/Storage.idl
    10791078$(PROJECT_DIR)/storage/StorageEvent.idl
     1079$(PROJECT_DIR)/svg/Document+SVG.idl
    10801080$(PROJECT_DIR)/svg/SVGAElement.idl
    10811081$(PROJECT_DIR)/svg/SVGAltGlyphDefElement.idl
     
    11061106$(PROJECT_DIR)/svg/SVGDefsElement.idl
    11071107$(PROJECT_DIR)/svg/SVGDescElement.idl
    1108 $(PROJECT_DIR)/svg/SVGDocument.idl
    11091108$(PROJECT_DIR)/svg/SVGElement.idl
    11101109$(PROJECT_DIR)/svg/SVGEllipseElement.idl
  • trunk/Source/WebCore/DerivedSources-output.xcfilelist

    r267408 r267449  
    196196$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSAudioTimestamp.cpp
    197197$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSAudioTimestamp.h
     198$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSAudioTrack+MediaSource.cpp
     199$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSAudioTrack+MediaSource.h
    198200$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSAudioTrack.cpp
    199201$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSAudioTrack.h
     
    421423$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMCSSCustomPropertyDescriptor.cpp
    422424$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMCSSCustomPropertyDescriptor.h
     425$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMCSSNamespace+CSSPainting.cpp
     426$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMCSSNamespace+CSSPainting.h
     427$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMCSSNamespace+CSSPropertiesandValues.cpp
     428$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMCSSNamespace+CSSPropertiesandValues.h
    423429$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMCSSNamespace.cpp
    424430$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMCSSNamespace.h
     
    483489$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMTokenList.cpp
    484490$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMTokenList.h
     491$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMURL+MediaSource.cpp
     492$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMURL+MediaSource.h
    485493$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMURL.cpp
    486494$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMURL.h
    487495$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMURLMediaSource.cpp
    488496$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMURLMediaSource.h
     497$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow+Caches.cpp
     498$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow+Caches.h
     499$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow+IndexedDatabase.cpp
     500$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow+IndexedDatabase.h
     501$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow+Quota.cpp
     502$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow+Quota.h
     503$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow+SpeechSynthesis.cpp
     504$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow+SpeechSynthesis.h
     505$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow+WebDatabase.cpp
     506$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow+WebDatabase.h
    489507$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow.cpp
    490508$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDOMWindow.h
     
    539557$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDistanceModelType.cpp
    540558$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDistanceModelType.h
     559$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+CSSOMView.cpp
     560$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+CSSOMView.h
     561$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+Fullscreen.cpp
     562$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+Fullscreen.h
     563$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+HTML.cpp
     564$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+HTML.h
     565$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+HTMLObsolete.cpp
     566$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+HTMLObsolete.h
     567$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+PageVisibility.cpp
     568$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+PageVisibility.h
     569$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+PictureInPicture.cpp
     570$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+PictureInPicture.h
     571$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+PointerLock.cpp
     572$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+PointerLock.h
     573$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+SVG.cpp
     574$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+SVG.h
     575$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+Selection.cpp
     576$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+Selection.h
     577$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+StorageAccess.cpp
     578$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+StorageAccess.h
     579$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+Touch.cpp
     580$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+Touch.h
     581$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+UndoMananger.cpp
     582$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+UndoMananger.h
     583$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+WebAnimations.cpp
     584$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument+WebAnimations.h
    541585$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument.cpp
    542586$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocument.h
     
    553597$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentHTMLObsolete.cpp
    554598$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentHTMLObsolete.h
     599$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentOrShadowRoot+CSSOM.cpp
     600$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentOrShadowRoot+CSSOM.h
     601$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentOrShadowRoot+PictureInPicture.cpp
     602$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentOrShadowRoot+PictureInPicture.h
     603$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentOrShadowRoot+PointerLock.cpp
     604$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentOrShadowRoot+PointerLock.h
     605$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentOrShadowRoot+WebAnimations.cpp
     606$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentOrShadowRoot+WebAnimations.h
    555607$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentOrShadowRoot.cpp
    556608$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSDocumentOrShadowRoot.h
     
    615667$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSEffectTiming.cpp
    616668$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSEffectTiming.h
     669$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSElement+DOMParsing.cpp
     670$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSElement+DOMParsing.h
    617671$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSElement.cpp
    618672$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSElement.h
     
    799853$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSGlobalCrypto.cpp
    800854$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSGlobalCrypto.h
     855$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSGlobalEventHandlers+CSSAnimations.cpp
     856$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSGlobalEventHandlers+CSSAnimations.h
     857$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSGlobalEventHandlers+CSSTransitions.cpp
     858$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSGlobalEventHandlers+CSSTransitions.h
     859$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSGlobalEventHandlers+PointerEvents.cpp
     860$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSGlobalEventHandlers+PointerEvents.h
    801861$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSGlobalEventHandlers.cpp
    802862$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSGlobalEventHandlers.h
     
    881941$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLImageElement.cpp
    882942$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLImageElement.h
     943$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLInputElement+EntriesAPI.cpp
     944$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLInputElement+EntriesAPI.h
    883945$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLInputElement.cpp
    884946$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLInputElement.h
     
    899961$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLMarqueeElement.cpp
    900962$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLMarqueeElement.h
     963$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLMediaElement+MediaSession.cpp
     964$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLMediaElement+MediaSession.h
     965$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLMediaElement+RemotePlayback.cpp
     966$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLMediaElement+RemotePlayback.h
    901967$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLMediaElement.cpp
    902968$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLMediaElement.h
     
    9791045$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLUnknownElement.cpp
    9801046$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLUnknownElement.h
     1047$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLVideoElement+PictureInPicture.cpp
     1048$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLVideoElement+PictureInPicture.h
    9811049$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLVideoElement.cpp
    9821050$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSHTMLVideoElement.h
     
    12251293$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNamedNodeMap.cpp
    12261294$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNamedNodeMap.h
     1295$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+Beacon.cpp
     1296$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+Beacon.h
     1297$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+Clipboard.cpp
     1298$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+Clipboard.h
     1299$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+Credentials.cpp
     1300$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+Credentials.h
     1301$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+EME.cpp
     1302$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+EME.h
     1303$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+GPU.cpp
     1304$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+GPU.h
     1305$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+Gamepad.cpp
     1306$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+Gamepad.h
     1307$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+Geolocation.cpp
     1308$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+Geolocation.h
     1309$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+IsLoggedIn.cpp
     1310$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+IsLoggedIn.h
     1311$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+MediaCapabilities.cpp
     1312$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+MediaCapabilities.h
     1313$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+MediaDevices.cpp
     1314$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+MediaDevices.h
     1315$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+StorageQuota.cpp
     1316$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+StorageQuota.h
     1317$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+WebDriver.cpp
     1318$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+WebDriver.h
     1319$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+WebXR.cpp
     1320$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator+WebXR.h
    12271321$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator.cpp
    12281322$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSNavigator.h
     
    20192113$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSTextMetrics.cpp
    20202114$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSTextMetrics.h
     2115$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSTextTrack+MediaSource.cpp
     2116$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSTextTrack+MediaSource.h
    20212117$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSTextTrack.cpp
    20222118$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSTextTrack.h
     
    20912187$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSVideoPlaybackQuality.cpp
    20922188$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSVideoPlaybackQuality.h
     2189$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSVideoTrack+MediaSource.cpp
     2190$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSVideoTrack+MediaSource.h
    20932191$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSVideoTrack.cpp
    20942192$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSVideoTrack.h
     
    23232421$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWindowEventHandlers.cpp
    23242422$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWindowEventHandlers.h
     2423$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWindowOrWorkerGlobalScope+Fetch.cpp
     2424$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWindowOrWorkerGlobalScope+Fetch.h
    23252425$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWindowOrWorkerGlobalScope.cpp
    23262426$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWindowOrWorkerGlobalScope.h
     
    23292429$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorker.cpp
    23302430$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorker.h
     2431$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerGlobalScope+Caches.cpp
     2432$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerGlobalScope+Caches.h
     2433$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerGlobalScope+IndexedDatabase.cpp
     2434$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerGlobalScope+IndexedDatabase.h
    23312435$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerGlobalScope.cpp
    23322436$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerGlobalScope.h
     
    23372441$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerLocation.cpp
    23382442$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerLocation.h
     2443$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerNavigator+GPU.cpp
     2444$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerNavigator+GPU.h
     2445$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerNavigator+StorageQuota.cpp
     2446$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerNavigator+StorageQuota.h
    23392447$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerNavigator.cpp
    23402448$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSWorkerNavigator.h
  • trunk/Source/WebCore/DerivedSources.make

    r267408 r267449  
    161161    $(WebCore)/Modules/async-clipboard/Clipboard.idl \
    162162    $(WebCore)/Modules/async-clipboard/ClipboardItem.idl \
    163     $(WebCore)/Modules/async-clipboard/NavigatorClipboard.idl \
    164     $(WebCore)/Modules/beacon/NavigatorBeacon.idl \
     163    $(WebCore)/Modules/async-clipboard/Navigator+Clipboard.idl \
     164    $(WebCore)/Modules/beacon/Navigator+Beacon.idl \
    165165    $(WebCore)/Modules/cache/CacheQueryOptions.idl \
    166166    $(WebCore)/Modules/cache/DOMCache.idl \
    167167    $(WebCore)/Modules/cache/DOMCacheStorage.idl \
    168     $(WebCore)/Modules/cache/DOMWindowCaches.idl \
    169     $(WebCore)/Modules/cache/WorkerGlobalScopeCaches.idl \
     168    $(WebCore)/Modules/cache/DOMWindow+Caches.idl \
     169    $(WebCore)/Modules/cache/WorkerGlobalScope+Caches.idl \
    170170    $(WebCore)/Modules/credentialmanagement/BasicCredential.idl \
    171171    $(WebCore)/Modules/credentialmanagement/CredentialCreationOptions.idl \
    172172    $(WebCore)/Modules/credentialmanagement/CredentialRequestOptions.idl \
    173173    $(WebCore)/Modules/credentialmanagement/CredentialsContainer.idl \
    174     $(WebCore)/Modules/credentialmanagement/NavigatorCredentials.idl \
     174    $(WebCore)/Modules/credentialmanagement/Navigator+Credentials.idl \
    175175    $(WebCore)/Modules/encryptedmedia/MediaKeyEncryptionScheme.idl \
    176176    $(WebCore)/Modules/encryptedmedia/MediaKeyMessageEvent.idl \
     
    183183    $(WebCore)/Modules/encryptedmedia/MediaKeys.idl \
    184184    $(WebCore)/Modules/encryptedmedia/MediaKeysRequirement.idl \
    185     $(WebCore)/Modules/encryptedmedia/NavigatorEME.idl \
     185    $(WebCore)/Modules/encryptedmedia/Navigator+EME.idl \
    186186    $(WebCore)/Modules/encryptedmedia/legacy/WebKitMediaKeyMessageEvent.idl \
    187187    $(WebCore)/Modules/encryptedmedia/legacy/WebKitMediaKeyNeededEvent.idl \
     
    197197    $(WebCore)/Modules/entriesapi/FileSystemEntryCallback.idl \
    198198    $(WebCore)/Modules/entriesapi/FileSystemFileEntry.idl \
    199     $(WebCore)/Modules/entriesapi/HTMLInputElementEntriesAPI.idl \
     199    $(WebCore)/Modules/entriesapi/HTMLInputElement+EntriesAPI.idl \
    200200    $(WebCore)/Modules/fetch/FetchBody.idl \
    201201    $(WebCore)/Modules/fetch/FetchHeaders.idl \
     
    208208    $(WebCore)/Modules/fetch/FetchRequestRedirect.idl \
    209209    $(WebCore)/Modules/fetch/FetchResponse.idl \
    210     $(WebCore)/Modules/fetch/WindowOrWorkerGlobalScopeFetch.idl \
     210    $(WebCore)/Modules/fetch/WindowOrWorkerGlobalScope+Fetch.idl \
    211211    $(WebCore)/Modules/gamepad/Gamepad.idl \
    212212    $(WebCore)/Modules/gamepad/GamepadButton.idl \
    213213    $(WebCore)/Modules/gamepad/GamepadEvent.idl \
    214     $(WebCore)/Modules/gamepad/NavigatorGamepad.idl \
     214    $(WebCore)/Modules/gamepad/Navigator+Gamepad.idl \
    215215    $(WebCore)/Modules/geolocation/Geolocation.idl \
    216216    $(WebCore)/Modules/geolocation/GeolocationCoordinates.idl \
    217217    $(WebCore)/Modules/geolocation/GeolocationPosition.idl \
    218218    $(WebCore)/Modules/geolocation/GeolocationPositionError.idl \
    219     $(WebCore)/Modules/geolocation/NavigatorGeolocation.idl \
     219    $(WebCore)/Modules/geolocation/Navigator+Geolocation.idl \
    220220    $(WebCore)/Modules/geolocation/PositionCallback.idl \
    221221    $(WebCore)/Modules/geolocation/PositionErrorCallback.idl \
     
    223223    $(WebCore)/Modules/highlight/HighlightMap.idl \
    224224    $(WebCore)/Modules/highlight/HighlightRangeGroup.idl \
    225     $(WebCore)/Modules/indexeddb/DOMWindowIndexedDatabase.idl \
     225    $(WebCore)/Modules/indexeddb/DOMWindow+IndexedDatabase.idl \
    226226    $(WebCore)/Modules/indexeddb/IDBCursor.idl \
    227227    $(WebCore)/Modules/indexeddb/IDBCursorDirection.idl \
     
    237237    $(WebCore)/Modules/indexeddb/IDBTransactionMode.idl \
    238238    $(WebCore)/Modules/indexeddb/IDBVersionChangeEvent.idl \
    239     $(WebCore)/Modules/indexeddb/WorkerGlobalScopeIndexedDatabase.idl \
     239    $(WebCore)/Modules/indexeddb/WorkerGlobalScope+IndexedDatabase.idl \
    240240    $(WebCore)/Modules/mediacapabilities/AudioConfiguration.idl \
    241241    $(WebCore)/Modules/mediacapabilities/ColorGamut.idl \
     
    250250    $(WebCore)/Modules/mediacapabilities/MediaEncodingConfiguration.idl \
    251251    $(WebCore)/Modules/mediacapabilities/MediaEncodingType.idl \
    252     $(WebCore)/Modules/mediacapabilities/NavigatorMediaCapabilities.idl \
     252    $(WebCore)/Modules/mediacapabilities/Navigator+MediaCapabilities.idl \
    253253    $(WebCore)/Modules/mediacapabilities/TransferFunction.idl \
    254254    $(WebCore)/Modules/mediacapabilities/VideoConfiguration.idl \
     
    257257    $(WebCore)/Modules/mediarecorder/MediaRecorder.idl \
    258258    $(WebCore)/Modules/mediarecorder/MediaRecorderErrorEvent.idl \
    259     $(WebCore)/Modules/mediasession/HTMLMediaElementMediaSession.idl \
     259    $(WebCore)/Modules/mediasession/HTMLMediaElement+MediaSession.idl \
    260260    $(WebCore)/Modules/mediasession/MediaRemoteControls.idl \
    261261    $(WebCore)/Modules/mediasession/MediaSession.idl \
    262     $(WebCore)/Modules/mediasource/AudioTrackMediaSource.idl \
    263     $(WebCore)/Modules/mediasource/DOMURLMediaSource.idl \
     262    $(WebCore)/Modules/mediasource/AudioTrack+MediaSource.idl \
     263    $(WebCore)/Modules/mediasource/DOMURL+MediaSource.idl \
    264264    $(WebCore)/Modules/mediasource/MediaSource.idl \
    265265    $(WebCore)/Modules/mediasource/SourceBuffer.idl \
    266266    $(WebCore)/Modules/mediasource/SourceBufferList.idl \
    267     $(WebCore)/Modules/mediasource/TextTrackMediaSource.idl \
     267    $(WebCore)/Modules/mediasource/TextTrack+MediaSource.idl \
    268268    $(WebCore)/Modules/mediasource/VideoPlaybackQuality.idl \
    269     $(WebCore)/Modules/mediasource/VideoTrackMediaSource.idl \
     269    $(WebCore)/Modules/mediasource/VideoTrack+MediaSource.idl \
    270270    $(WebCore)/Modules/mediastream/CanvasCaptureMediaStreamTrack.idl \
    271271    $(WebCore)/Modules/mediastream/DoubleRange.idl \
     
    278278    $(WebCore)/Modules/mediastream/MediaTrackConstraints.idl \
    279279    $(WebCore)/Modules/mediastream/MediaTrackSupportedConstraints.idl \
    280     $(WebCore)/Modules/mediastream/NavigatorMediaDevices.idl \
     280    $(WebCore)/Modules/mediastream/Navigator+MediaDevices.idl \
    281281    $(WebCore)/Modules/mediastream/OverconstrainedError.idl \
    282282    $(WebCore)/Modules/mediastream/OverconstrainedErrorEvent.idl \
     
    353353    $(WebCore)/Modules/paymentrequest/PaymentShippingType.idl \
    354354    $(WebCore)/Modules/paymentrequest/PaymentValidationErrors.idl \
    355     $(WebCore)/Modules/pictureinpicture/DocumentOrShadowRootPictureInPicture.idl \
    356     $(WebCore)/Modules/pictureinpicture/DocumentPictureInPicture.idl \
     355    $(WebCore)/Modules/pictureinpicture/DocumentOrShadowRoot+PictureInPicture.idl \
     356    $(WebCore)/Modules/pictureinpicture/Document+PictureInPicture.idl \
    357357    $(WebCore)/Modules/pictureinpicture/EnterPictureInPictureEvent.idl \
    358     $(WebCore)/Modules/pictureinpicture/HTMLVideoElementPictureInPicture.idl \
     358    $(WebCore)/Modules/pictureinpicture/HTMLVideoElement+PictureInPicture.idl \
    359359    $(WebCore)/Modules/pictureinpicture/PictureInPictureWindow.idl \
    360360    $(WebCore)/Modules/plugins/QuickTimePluginReplacement.idl \
    361     $(WebCore)/Modules/quota/DOMWindowQuota.idl \
    362     $(WebCore)/Modules/quota/NavigatorStorageQuota.idl \
     361    $(WebCore)/Modules/quota/DOMWindow+Quota.idl \
     362    $(WebCore)/Modules/quota/Navigator+StorageQuota.idl \
    363363    $(WebCore)/Modules/quota/StorageErrorCallback.idl \
    364364    $(WebCore)/Modules/quota/StorageInfo.idl \
     
    366366    $(WebCore)/Modules/quota/StorageQuotaCallback.idl \
    367367    $(WebCore)/Modules/quota/StorageUsageCallback.idl \
    368     $(WebCore)/Modules/quota/WorkerNavigatorStorageQuota.idl \
    369         $(WebCore)/Modules/remoteplayback/HTMLMediaElementRemotePlayback.idl \
     368    $(WebCore)/Modules/quota/WorkerNavigator+StorageQuota.idl \
     369        $(WebCore)/Modules/remoteplayback/HTMLMediaElement+RemotePlayback.idl \
    370370        $(WebCore)/Modules/remoteplayback/RemotePlayback.idl \
    371371        $(WebCore)/Modules/remoteplayback/RemotePlaybackAvailabilityCallback.idl \
    372     $(WebCore)/Modules/speech/DOMWindowSpeechSynthesis.idl \
     372    $(WebCore)/Modules/speech/DOMWindow+SpeechSynthesis.idl \
    373373    $(WebCore)/Modules/speech/SpeechSynthesis.idl \
    374374    $(WebCore)/Modules/speech/SpeechSynthesisEvent.idl \
     
    477477    $(WebCore)/Modules/webauthn/PublicKeyCredentialType.idl \
    478478    $(WebCore)/Modules/webauthn/UserVerificationRequirement.idl \
    479     $(WebCore)/Modules/webdatabase/DOMWindowWebDatabase.idl \
     479    $(WebCore)/Modules/webdatabase/DOMWindow+WebDatabase.idl \
    480480    $(WebCore)/Modules/webdatabase/Database.idl \
    481481    $(WebCore)/Modules/webdatabase/DatabaseCallback.idl \
     
    488488    $(WebCore)/Modules/webdatabase/SQLTransactionCallback.idl \
    489489    $(WebCore)/Modules/webdatabase/SQLTransactionErrorCallback.idl \
    490     $(WebCore)/Modules/webdriver/NavigatorWebDriver.idl \
     490    $(WebCore)/Modules/webdriver/Navigator+WebDriver.idl \
    491491    $(WebCore)/Modules/webgpu/GPUCanvasContext.idl \
    492492    $(WebCore)/Modules/webgpu/GPUColor.idl \
     
    517517    $(WebCore)/Modules/webgpu/GPUVertexBufferDescriptor.idl \
    518518    $(WebCore)/Modules/webgpu/GPUVertexInputDescriptor.idl \
    519     $(WebCore)/Modules/webgpu/NavigatorGPU.idl \
     519    $(WebCore)/Modules/webgpu/Navigator+GPU.idl \
    520520    $(WebCore)/Modules/webgpu/WebGPU.idl \
    521521    $(WebCore)/Modules/webgpu/WebGPUAdapter.idl \
     
    550550    $(WebCore)/Modules/webgpu/WebGPUTexture.idl \
    551551    $(WebCore)/Modules/webgpu/WebGPUTextureView.idl \
    552     $(WebCore)/Modules/webgpu/WorkerNavigatorGPU.idl \
     552    $(WebCore)/Modules/webgpu/WorkerNavigator+GPU.idl \
    553553    $(WebCore)/Modules/websockets/CloseEvent.idl \
    554554    $(WebCore)/Modules/websockets/WebSocket.idl \
    555     $(WebCore)/Modules/webxr/NavigatorWebXR.idl \
     555    $(WebCore)/Modules/webxr/Navigator+WebXR.idl \
    556556    $(WebCore)/Modules/webxr/WebXRBoundedReferenceSpace.idl \
    557557    $(WebCore)/Modules/webxr/WebXRFrame.idl \
     
    599599    $(WebCore)/animation/CompositeOperationOrAuto.idl \
    600600    $(WebCore)/animation/ComputedEffectTiming.idl \
    601     $(WebCore)/animation/DocumentAnimations.idl \
    602     $(WebCore)/animation/DocumentOrShadowRootAnimations.idl \
     601    $(WebCore)/animation/Document+WebAnimations.idl \
     602    $(WebCore)/animation/DocumentOrShadowRoot+WebAnimations.idl \
    603603    $(WebCore)/animation/DocumentTimeline.idl \
    604604    $(WebCore)/animation/DocumentTimelineOptions.idl \
     
    606606    $(WebCore)/animation/FillMode.idl \
    607607    $(WebCore)/animation/GetAnimationsOptions.idl \
    608     $(WebCore)/animation/GlobalEventHandlersCSSAnimations.idl \
    609     $(WebCore)/animation/GlobalEventHandlersCSSTransitions.idl \
     608    $(WebCore)/animation/GlobalEventHandlers+CSSAnimations.idl \
     609    $(WebCore)/animation/GlobalEventHandlers+CSSTransitions.idl \
    610610    $(WebCore)/animation/IterationCompositeOperation.idl \
    611611    $(WebCore)/animation/KeyframeAnimationOptions.idl \
     
    659659    $(WebCore)/css/CSSSupportsRule.idl \
    660660    $(WebCore)/css/CSSUnknownRule.idl \
    661     $(WebCore)/css/DocumentOrShadowRootStyleSheets.idl \
     661    $(WebCore)/css/DocumentOrShadowRoot+CSSOM.idl \
    662662    $(WebCore)/css/DOMCSSCustomPropertyDescriptor.idl \
    663663    $(WebCore)/css/DOMCSSNamespace.idl \
    664     $(WebCore)/css/DOMCSSPaintWorklet.idl \
    665     $(WebCore)/css/DOMCSSRegisterCustomProperty.idl \
     664    $(WebCore)/css/DOMCSSNamespace+CSSPainting.idl \
     665    $(WebCore)/css/DOMCSSNamespace+CSSPropertiesandValues.idl \
    666666    $(WebCore)/css/DOMMatrix.idl \
    667667    $(WebCore)/css/DOMMatrix2DInit.idl \
     
    727727    $(WebCore)/dom/DeviceOrientationOrMotionPermissionState.idl \
    728728    $(WebCore)/dom/Document.idl \
     729    $(WebCore)/dom/Document+CSSOMView.idl \
     730    $(WebCore)/dom/Document+Fullscreen.idl \
     731    $(WebCore)/dom/Document+HTML.idl \
     732    $(WebCore)/dom/Document+HTMLObsolete.idl \
     733    $(WebCore)/dom/Document+PageVisibility.idl \
     734    $(WebCore)/dom/Document+PointerLock.idl \
     735    $(WebCore)/dom/Document+Selection.idl \
     736    $(WebCore)/dom/Document+StorageAccess.idl \
     737    $(WebCore)/dom/Document+UndoMananger.idl \
    729738    $(WebCore)/dom/DocumentAndElementEventHandlers.idl \
    730739    $(WebCore)/dom/DocumentFragment.idl \
    731     $(WebCore)/dom/DocumentFullscreen.idl \
    732     $(WebCore)/dom/DocumentHTML.idl \
    733     $(WebCore)/dom/DocumentHTMLObsolete.idl \
    734740    $(WebCore)/dom/DocumentOrShadowRoot.idl \
    735     $(WebCore)/dom/DocumentOrShadowRootPointerLock.idl \
    736     $(WebCore)/dom/DocumentPageVisibility.idl \
    737     $(WebCore)/dom/DocumentPointerLock.idl \
    738     $(WebCore)/dom/DocumentScrolling.idl \
    739     $(WebCore)/dom/DocumentSelection.idl \
    740     $(WebCore)/dom/DocumentStorageAccess.idl \
     741    $(WebCore)/dom/DocumentOrShadowRoot+PointerLock.idl \
    741742    $(WebCore)/dom/DocumentType.idl \
    742     $(WebCore)/dom/DocumentUndoMananger.idl \
    743743    $(WebCore)/dom/DragEvent.idl \
    744744    $(WebCore)/dom/Element.idl \
    745     $(WebCore)/dom/ElementDOMParsing.idl \
     745    $(WebCore)/dom/Element+DOMParsing.idl \
    746746    $(WebCore)/dom/ErrorEvent.idl \
    747747    $(WebCore)/dom/Event.idl \
     
    752752    $(WebCore)/dom/FocusEvent.idl \
    753753    $(WebCore)/dom/GlobalEventHandlers.idl \
    754     $(WebCore)/dom/GlobalEventHandlersPointerEvents.idl \
     754    $(WebCore)/dom/GlobalEventHandlers+PointerEvents.idl \
    755755    $(WebCore)/dom/HashChangeEvent.idl \
    756756    $(WebCore)/dom/IdleDeadline.idl \
     
    10311031    $(WebCore)/page/Location.idl \
    10321032    $(WebCore)/page/Navigator.idl \
     1033    $(WebCore)/page/Navigator+IsLoggedIn.idl \
    10331034    $(WebCore)/page/NavigatorCookies.idl \
    10341035    $(WebCore)/page/NavigatorID.idl \
    1035     $(WebCore)/page/NavigatorIsLoggedIn.idl \
    10361036    $(WebCore)/page/NavigatorLanguage.idl \
    10371037    $(WebCore)/page/NavigatorOnLine.idl \
     
    10851085    $(WebCore)/storage/Storage.idl \
    10861086    $(WebCore)/storage/StorageEvent.idl \
     1087    $(WebCore)/svg/Document+SVG.idl \
    10871088    $(WebCore)/svg/SVGAElement.idl \
    10881089    $(WebCore)/svg/SVGAltGlyphDefElement.idl \
     
    11131114    $(WebCore)/svg/SVGDefsElement.idl \
    11141115    $(WebCore)/svg/SVGDescElement.idl \
    1115     $(WebCore)/svg/SVGDocument.idl \
    11161116    $(WebCore)/svg/SVGElement.idl \
    11171117    $(WebCore)/svg/SVGEllipseElement.idl \
     
    13311331ifneq ($(findstring ENABLE_IOS_TOUCH_EVENTS,$(FEATURE_AND_PLATFORM_DEFINES)), ENABLE_IOS_TOUCH_EVENTS)
    13321332JS_BINDING_IDLS += \
    1333     $(WebCore)/dom/DocumentTouch.idl \
     1333    $(WebCore)/dom/Document+Touch.idl \
    13341334    $(WebCore)/dom/Touch.idl \
    13351335    $(WebCore)/dom/TouchEvent.idl \
  • trunk/Source/WebCore/Modules/async-clipboard/Navigator+Clipboard.idl

    r267448 r267449  
    2424 */
    2525
     26// https://w3c.github.io/clipboard-apis/#navigator-interface
    2627[
    2728    EnabledBySetting=AsyncClipboardAPI,
  • trunk/Source/WebCore/Modules/beacon/Navigator+Beacon.idl

    r267448 r267449  
    2626typedef (Blob or BufferSource or DOMFormData or URLSearchParams or ReadableStream or USVString) BodyInit;
    2727
     28// https://w3c.github.io/beacon/#sendbeacon-method
    2829[
    2930    EnabledBySetting=BeaconAPI,
  • trunk/Source/WebCore/Modules/cache/DOMWindow+Caches.idl

    r267448 r267449  
    2424 */
    2525
     26// https://w3c.github.io/ServiceWorker/#self-caches
     27// FIXME: This should be merged with WorkerGlobalScope+Caches.idl into a new WindowOrWorkerGlobalScope+Caches.idl to match the spec.
    2628[
    2729    EnabledAtRuntime=CacheAPI,
  • trunk/Source/WebCore/Modules/cache/WorkerGlobalScope+Caches.idl

    r267448 r267449  
    2424*/
    2525
     26// https://w3c.github.io/ServiceWorker/#self-caches
     27// FIXME: This should be merged with DOMWindow+Caches.idl into a new WindowOrWorkerGlobalScope+Caches.idl to match the spec.
    2628[
    2729    EnabledAtRuntime=CacheAPI,
  • trunk/Source/WebCore/Modules/credentialmanagement/Navigator+Credentials.idl

    r267448 r267449  
    2525 */
    2626
     27// https://w3c.github.io/webappsec-credential-management/#framework-credential-management
     28
    2729[
    2830    Conditional=WEB_AUTHN,
  • trunk/Source/WebCore/Modules/encryptedmedia/Navigator+EME.idl

    r267448 r267449  
    2727 */
    2828
     29// https://w3c.github.io/encrypted-media/#navigator-extension-requestmediakeysystemaccess
    2930[
    3031    Conditional=ENCRYPTED_MEDIA,
  • trunk/Source/WebCore/Modules/gamepad/Navigator+Gamepad.idl

    r267448 r267449  
    2424 */
    2525
     26// https://w3c.github.io/gamepad/#navigator-interface-extension
    2627[
    2728    Conditional=GAMEPAD,
  • trunk/Source/WebCore/Modules/geolocation/Navigator+Geolocation.idl

    r267448 r267449  
    1818 */
    1919
     20// https://w3c.github.io/geolocation-api/#navigator_interface
    2021[
    2122    Conditional=GEOLOCATION,
  • trunk/Source/WebCore/Modules/indexeddb/DOMWindow+IndexedDatabase.idl

    r267448 r267449  
    2525 */
    2626
     27// https://w3c.github.io/IndexedDB/#factory-interface
     28// FIXME: This should be merged with WorkerGlobalScope+IndexedDatabase.idl into a new WindowOrWorkerGlobalScope+IndexedDatabase.idl to match the spec.
    2729[
    2830    Conditional=INDEXED_DATABASE,
  • trunk/Source/WebCore/Modules/indexeddb/WorkerGlobalScope+IndexedDatabase.idl

    r267448 r267449  
    2525 */
    2626
     27// https://w3c.github.io/IndexedDB/#factory-interface
     28// FIXME: This should be merged with DOMWindow+IndexedDatabase.idl into a new WindowOrWorkerGlobalScope+IndexedDatabase.idl to match the spec.
    2729[
    2830    Conditional=INDEXED_DATABASE_IN_WORKERS,
     
    3133    [EnabledAtRuntime=IndexedDBWorkers] readonly attribute IDBFactory indexedDB;
    3234};
    33 
  • trunk/Source/WebCore/Modules/mediacapabilities/Navigator+MediaCapabilities.idl

    r267448 r267449  
    2424 */
    2525
     26// https://w3c.github.io/media-capabilities/#navigators-extensions
    2627[
    2728    EnabledBySetting=MediaCapabilities,
  • trunk/Source/WebCore/Modules/mediasession/HTMLMediaElement+MediaSession.idl

    r267448 r267449  
    2424 */
    2525
     26// FIXME: These don't seem to be in any current specifications. We should consider removing them.
     27// See https://webkit.org/b/216831.
    2628[
    2729    Conditional=VIDEO&MEDIA_SESSION,
  • trunk/Source/WebCore/Modules/mediasource/AudioTrack+MediaSource.idl

    r267448 r267449  
    2424 */
    2525
     26// https://w3c.github.io/media-source/#audio-track-extensions
    2627[
    2728    Conditional=MEDIA_SOURCE,
  • trunk/Source/WebCore/Modules/mediasource/DOMURL+MediaSource.idl

    r267448 r267449  
    2929 */
    3030
     31// https://w3c.github.io/media-source/#url
     32// FIXME: This should be restricted to being exposed on Window.
    3133[
    3234    Conditional=MEDIA_SOURCE,
  • trunk/Source/WebCore/Modules/mediasource/TextTrack+MediaSource.idl

    r267448 r267449  
    2424 */
    2525
     26// https://w3c.github.io/media-source/#text-track-extensions
    2627[
    2728    Conditional=MEDIA_SOURCE,
  • trunk/Source/WebCore/Modules/mediastream/Navigator+MediaDevices.idl

    r267448 r267449  
    2929 */
    3030
     31// https://w3c.github.io/mediacapture-main/#navigator-interface-extensions
     32// https://w3c.github.io/mediacapture-main/#legacy-interface-extensions
    3133[
    3234    Conditional=MEDIA_STREAM,
  • trunk/Source/WebCore/Modules/quota/DOMWindow+Quota.idl

    r267448 r267449  
    2424 */
    2525
     26// FIXME: This partial interface is no longer in https://w3c.github.io/quota-api. We should consider removing support.
    2627[
    2728    Conditional=QUOTA,
     
    3031    readonly attribute StorageInfo webkitStorageInfo;
    3132};
    32 
  • trunk/Source/WebCore/Modules/quota/Navigator+StorageQuota.idl

    r267448 r267449  
    1818 */
    1919
     20// https://w3c.github.io/quota-api/#accessing-storagequota-interface
    2021[
    2122    Conditional=QUOTA,
    2223    ImplementedBy=NavigatorStorageQuota
    2324] partial interface Navigator {
     25    // FIXME: The spec only specifies one attribute called 'storageQuota'. We should consider adding support.
    2426    readonly attribute StorageQuota webkitTemporaryStorage;
    2527    readonly attribute StorageQuota webkitPersistentStorage;
  • trunk/Source/WebCore/Modules/quota/WorkerNavigator+StorageQuota.idl

    r267448 r267449  
    1818 */
    1919
     20// FIXME: This partial interface is no longer in https://w3c.github.io/quota-api. We should consider removing support.
    2021[
    2122    Conditional=QUOTA,
  • trunk/Source/WebCore/Modules/webdriver/Navigator+WebDriver.idl

    r267448 r267449  
    2424 */
    2525
     26// https://w3c.github.io/webdriver/#interface
    2627[
    2728    ImplementedBy=NavigatorWebDriver
  • trunk/Source/WebCore/Modules/webgpu/Navigator+GPU.idl

    r267448 r267449  
    2323 * THE POSSIBILITY OF SUCH DAMAGE.
    2424 */
    25 // https://github.com/gpuweb/gpuweb/blob/master/spec/index.bs
    2625
     26// https://gpuweb.github.io/gpuweb/#navigator-gpu
    2727[
    2828    Conditional=WEBGPU,
  • trunk/Source/WebCore/Modules/webgpu/WorkerNavigator+GPU.idl

    r267448 r267449  
    2323 * THE POSSIBILITY OF SUCH DAMAGE.
    2424 */
    25 // https://github.com/gpuweb/gpuweb/blob/master/spec/index.bs
    2625
     26// https://gpuweb.github.io/gpuweb/#navigator-gpu
     27// FIXME: The spec says this should only be exposed to DedicatedWorkers.
    2728[
    2829    Conditional=WEBGPU,
  • trunk/Source/WebCore/Modules/webxr/Navigator+WebXR.idl

    r267448 r267449  
    2424 */
    2525
     26// https://immersive-web.github.io/webxr/#navigator-xr-attribute
    2627[
    2728    EnabledAtRuntime=WebXR,
  • trunk/Source/WebCore/Sources.txt

    r267402 r267449  
    23802380style/StyleUpdate.cpp
    23812381style/UserAgentStyle.cpp
     2382svg/DocumentSVG.cpp
    23822383svg/SVGAElement.cpp
    23832384svg/SVGAltGlyphDefElement.cpp
     
    26712672JSAudioTrack.cpp
    26722673JSAudioTrackList.cpp
    2673 JSAudioTrackMediaSource.cpp
    26742674JSAuthenticationExtensionsClientInputs.cpp
    26752675JSAuthenticationExtensionsClientOutputs.cpp
     
    27802780JSDOMCSSCustomPropertyDescriptor.cpp
    27812781JSDOMCSSNamespace.cpp
    2782 JSDOMCSSPaintWorklet.cpp
    2783 JSDOMCSSRegisterCustomProperty.cpp
    27842782JSDOMCache.cpp
    27852783JSDOMCacheStorage.cpp
     
    28112809JSDOMTokenList.cpp
    28122810JSDOMURL.cpp
    2813 JSDOMURLMediaSource.cpp
    28142811JSDOMWindow.cpp
    2815 JSDOMWindowCaches.cpp
    2816 JSDOMWindowIndexedDatabase.cpp
    2817 JSDOMWindowQuota.cpp
    2818 JSDOMWindowSpeechSynthesis.cpp
    2819 JSDOMWindowWebDatabase.cpp
    28202812JSDataCue.cpp
    28212813JSDataTransfer.cpp
     
    28412833JSDocumentFragment.cpp
    28422834JSDocumentOrShadowRoot.cpp
    2843 JSDocumentPictureInPicture.cpp
    28442835JSDocumentTimeline.cpp
    28452836JSDocumentTimelineOptions.cpp
     
    29762967JSHTMLImageElement.cpp
    29772968JSHTMLInputElement.cpp
    2978 JSHTMLInputElementEntriesAPI.cpp
    29792969JSHTMLKeygenElement.cpp
    29802970JSHTMLLIElement.cpp
     
    29852975JSHTMLMarqueeElement.cpp
    29862976JSHTMLMediaElement.cpp
    2987 JSHTMLMediaElementMediaSession.cpp
    29882977JSHTMLMenuElement.cpp
    29892978JSHTMLMenuItemElement.cpp
     
    30243013JSHTMLUnknownElement.cpp
    30253014JSHTMLVideoElement.cpp
    3026 JSHTMLVideoElementPictureInPicture.cpp
    30273015JSHashChangeEvent.cpp
    30283016JSHdrMetadataType.cpp
     
    31283116JSNamedNodeMap.cpp
    31293117JSNavigator.cpp
    3130 JSNavigatorBeacon.cpp
    3131 JSNavigatorClipboard.cpp
    3132 JSNavigatorCredentials.cpp
    3133 JSNavigatorEME.cpp
    3134 JSNavigatorGPU.cpp
    3135 JSNavigatorGamepad.cpp
    3136 JSNavigatorGeolocation.cpp
    3137 JSNavigatorID.cpp
    3138 JSNavigatorLanguage.cpp
    3139 JSNavigatorMaxTouchPoints.cpp
    3140 JSNavigatorMediaCapabilities.cpp
    3141 JSNavigatorMediaDevices.cpp
    3142 JSNavigatorOnLine.cpp
    3143 JSNavigatorServiceWorker.cpp
    3144 JSNavigatorShare.cpp
    3145 JSNavigatorStorageQuota.cpp
    3146 JSNavigatorWebDriver.cpp
    31473118JSNode.cpp
    31483119JSNodeFilter.cpp
     
    33433314JSSVGDefsElement.cpp
    33443315JSSVGDescElement.cpp
    3345 JSSVGDocument.cpp
    33463316JSSVGElement.cpp
    33473317JSSVGEllipseElement.cpp
     
    35173487JSTextTrackCueList.cpp
    35183488JSTextTrackList.cpp
    3519 JSTextTrackMediaSource.cpp
    35203489JSTimeRanges.cpp
    35213490JSTrackEvent.cpp
     
    35463515JSVideoTrack.cpp
    35473516JSVideoTrackList.cpp
    3548 JSVideoTrackMediaSource.cpp
    35493517JSVisibilityState.cpp
    35503518JSVisualViewport.cpp
     
    36563624JSWindowEventHandlers.cpp
    36573625JSWindowOrWorkerGlobalScope.cpp
    3658 JSWindowOrWorkerGlobalScopeFetch.cpp
    36593626JSWorker.cpp
    36603627JSWorkerGlobalScope.cpp
    3661 JSWorkerGlobalScopeCaches.cpp
    3662 JSWorkerGlobalScopeIndexedDatabase.cpp
    36633628JSWorkerLocation.cpp
    36643629JSWorkerNavigator.cpp
    3665 JSWorkerNavigatorGPU.cpp
    3666 JSWorkerNavigatorStorageQuota.cpp
    36673630JSWorkerType.cpp
    36683631JSWorklet.cpp
  • trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj

    r267408 r267449  
    67296729                1DEF06CD233C3D2A00EE228D /* PictureInPictureWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureInPictureWindow.h; sourceTree = "<group>"; };
    67306730                1DEF06CE233C3D3100EE228D /* PictureInPictureWindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PictureInPictureWindow.cpp; sourceTree = "<group>"; };
    6731                 1DEF06CF233C3D3800EE228D /* HTMLVideoElementPictureInPicture.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HTMLVideoElementPictureInPicture.idl; sourceTree = "<group>"; };
     6731                1DEF06CF233C3D3800EE228D /* HTMLVideoElement+PictureInPicture.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "HTMLVideoElement+PictureInPicture.idl"; sourceTree = "<group>"; };
    67326732                1DEF06D0233C3D4100EE228D /* EnterPictureInPictureEvent.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EnterPictureInPictureEvent.idl; sourceTree = "<group>"; };
    67336733                1DEF06D1233C3D4B00EE228D /* PictureInPictureWindow.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PictureInPictureWindow.idl; sourceTree = "<group>"; };
     
    67356735                1DEF06DC233D2E1C00EE228D /* DocumentPictureInPicture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentPictureInPicture.cpp; sourceTree = "<group>"; };
    67366736                1DEF06DD233D2E1C00EE228D /* DocumentPictureInPicture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DocumentPictureInPicture.h; sourceTree = "<group>"; };
    6737                 1DEF06DE233D2E1C00EE228D /* DocumentPictureInPicture.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DocumentPictureInPicture.idl; sourceTree = "<group>"; };
     6737                1DEF06DE233D2E1C00EE228D /* Document+PictureInPicture.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Document+PictureInPicture.idl"; sourceTree = "<group>"; };
    67386738                1F36EA9A1E21BA1700621E25 /* WebBackgroundTaskController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebBackgroundTaskController.h; sourceTree = "<group>"; };
    67396739                1F36EA9B1E21BA1700621E25 /* WebBackgroundTaskController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WebBackgroundTaskController.mm; sourceTree = "<group>"; };
     
    69886988                2D9BF6FA1DBFB71F007A7D99 /* MediaKeySystemConfiguration.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MediaKeySystemConfiguration.idl; sourceTree = "<group>"; };
    69896989                2D9BF6FB1DBFB71F007A7D99 /* MediaKeySystemMediaCapability.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MediaKeySystemMediaCapability.idl; sourceTree = "<group>"; };
    6990                 2D9BF6FC1DBFB71F007A7D99 /* NavigatorEME.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorEME.idl; sourceTree = "<group>"; };
     6990                2D9BF6FC1DBFB71F007A7D99 /* Navigator+EME.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Navigator+EME.idl"; sourceTree = "<group>"; };
    69916991                2D9BF7011DBFBB24007A7D99 /* MediaEncryptedEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MediaEncryptedEvent.cpp; sourceTree = "<group>"; };
    69926992                2D9BF7021DBFBB24007A7D99 /* MediaEncryptedEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaEncryptedEvent.h; sourceTree = "<group>"; };
     
    74807480                41380C241F34369700155FDA /* DOMCacheStorage.idl */ = {isa = PBXFileReference; lastKnownFileType = text; name = DOMCacheStorage.idl; path = Modules/cache/DOMCacheStorage.idl; sourceTree = SOURCE_ROOT; };
    74817481                41380C251F34369A00155FDA /* DOMCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = DOMCache.h; path = Modules/cache/DOMCache.h; sourceTree = SOURCE_ROOT; };
    7482                 41380C2A1F343E2F00155FDA /* WorkerGlobalScopeCaches.idl */ = {isa = PBXFileReference; lastKnownFileType = text; name = WorkerGlobalScopeCaches.idl; path = Modules/cache/WorkerGlobalScopeCaches.idl; sourceTree = SOURCE_ROOT; };
    7483                 41380C2B1F343E2F00155FDA /* DOMWindowCaches.idl */ = {isa = PBXFileReference; lastKnownFileType = text; name = DOMWindowCaches.idl; path = Modules/cache/DOMWindowCaches.idl; sourceTree = SOURCE_ROOT; };
     7482                41380C2A1F343E2F00155FDA /* WorkerGlobalScope+Caches.idl */ = {isa = PBXFileReference; lastKnownFileType = text; name = "WorkerGlobalScope+Caches.idl"; path = "Modules/cache/WorkerGlobalScope+Caches.idl"; sourceTree = SOURCE_ROOT; };
     7483                41380C2B1F343E2F00155FDA /* DOMWindow+Caches.idl */ = {isa = PBXFileReference; lastKnownFileType = text; name = "DOMWindow+Caches.idl"; path = "Modules/cache/DOMWindow+Caches.idl"; sourceTree = SOURCE_ROOT; };
    74847484                4138D3331244054800323D33 /* EventContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EventContext.h; sourceTree = "<group>"; };
    74857485                4138D3341244054800323D33 /* EventContext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EventContext.cpp; sourceTree = "<group>"; };
     
    81838183                4B5BDD99216588E500DD4262 /* CSSPaintCallback.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSPaintCallback.idl; sourceTree = "<group>"; };
    81848184                4B5BDD9A21658A1500DD4262 /* CSSPaintCallback.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSPaintCallback.h; sourceTree = "<group>"; };
    8185                 4B6B5CB62163DC1A00603817 /* DOMCSSPaintWorklet.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DOMCSSPaintWorklet.idl; sourceTree = "<group>"; };
     8185                4B6B5CB62163DC1A00603817 /* DOMCSSNamespace+CSSPainting.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "DOMCSSNamespace+CSSPainting.idl"; sourceTree = "<group>"; };
    81868186                4B6B5CB82163EC0700603817 /* DOMCSSPaintWorklet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DOMCSSPaintWorklet.h; sourceTree = "<group>"; };
    81878187                4B6B5CB92163ED3200603817 /* DOMCSSPaintWorklet.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DOMCSSPaintWorklet.cpp; sourceTree = "<group>"; };
     
    82158215                4BD781BE21C1965F00D9703E /* StylePropertyMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StylePropertyMap.h; sourceTree = "<group>"; };
    82168216                4BD781C521C1D67700D9703E /* StylePropertyMapReadOnly.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = StylePropertyMapReadOnly.cpp; sourceTree = "<group>"; };
    8217                 4BDA3FF52151B6F000FD6604 /* DOMCSSRegisterCustomProperty.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DOMCSSRegisterCustomProperty.idl; sourceTree = "<group>"; };
     8217                4BDA3FF52151B6F000FD6604 /* DOMCSSNamespace+CSSPropertiesandValues.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "DOMCSSNamespace+CSSPropertiesandValues.idl"; sourceTree = "<group>"; };
    82188218                4BDA3FF72151B6F100FD6604 /* DOMCSSRegisterCustomProperty.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DOMCSSRegisterCustomProperty.cpp; sourceTree = "<group>"; };
    82198219                4BDA3FF82151B6F200FD6604 /* DOMCSSCustomPropertyDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMCSSCustomPropertyDescriptor.h; sourceTree = "<group>"; };
     
    85478547                51A4BB0D1954D62700FA5C2E /* NavigatorGamepad.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorGamepad.cpp; sourceTree = "<group>"; };
    85488548                51A4BB0E1954D62700FA5C2E /* NavigatorGamepad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigatorGamepad.h; sourceTree = "<group>"; };
    8549                 51A4BB0F1954D62700FA5C2E /* NavigatorGamepad.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorGamepad.idl; sourceTree = "<group>"; };
     8549                51A4BB0F1954D62700FA5C2E /* Navigator+Gamepad.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Navigator+Gamepad.idl"; sourceTree = "<group>"; };
    85508550                51A748E02005D0E00075BA68 /* MessageWithMessagePorts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageWithMessagePorts.h; sourceTree = "<group>"; };
    85518551                51A748E12005D0E00075BA68 /* MessageWithMessagePorts.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MessageWithMessagePorts.cpp; sourceTree = "<group>"; };
     
    85858585                51D7196C181106DF0016DC51 /* DOMWindowIndexedDatabase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DOMWindowIndexedDatabase.cpp; sourceTree = "<group>"; };
    85868586                51D7196D181106DF0016DC51 /* DOMWindowIndexedDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMWindowIndexedDatabase.h; sourceTree = "<group>"; };
    8587                 51D7196E181106DF0016DC51 /* DOMWindowIndexedDatabase.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DOMWindowIndexedDatabase.idl; sourceTree = "<group>"; };
     8587                51D7196E181106DF0016DC51 /* DOMWindow+IndexedDatabase.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "DOMWindow+IndexedDatabase.idl"; sourceTree = "<group>"; };
    85888588                51D71977181106DF0016DC51 /* IDBCursor.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IDBCursor.idl; sourceTree = "<group>"; };
    85898589                51D7197B181106DF0016DC51 /* IDBCursorWithValue.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IDBCursorWithValue.idl; sourceTree = "<group>"; };
     
    86068606                51D719B1181106E00016DC51 /* WorkerGlobalScopeIndexedDatabase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WorkerGlobalScopeIndexedDatabase.cpp; sourceTree = "<group>"; };
    86078607                51D719B2181106E00016DC51 /* WorkerGlobalScopeIndexedDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WorkerGlobalScopeIndexedDatabase.h; sourceTree = "<group>"; };
    8608                 51D719B3181106E00016DC51 /* WorkerGlobalScopeIndexedDatabase.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = WorkerGlobalScopeIndexedDatabase.idl; sourceTree = "<group>"; };
     8608                51D719B3181106E00016DC51 /* WorkerGlobalScope+IndexedDatabase.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "WorkerGlobalScope+IndexedDatabase.idl"; sourceTree = "<group>"; };
    86098609                51D7236A1BB60BFE00478CA3 /* IDBResultData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = IDBResultData.cpp; sourceTree = "<group>"; };
    86108610                51D7236B1BB60BFE00478CA3 /* IDBResultData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IDBResultData.h; sourceTree = "<group>"; };
     
    91049104                57D135272294A7A800827401 /* JSAttestationConveyancePreference.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSAttestationConveyancePreference.cpp; sourceTree = "<group>"; };
    91059105                57D846241FE895F500CA3682 /* NavigatorCredentials.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorCredentials.cpp; sourceTree = "<group>"; };
    9106                 57D846251FE895F600CA3682 /* NavigatorCredentials.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorCredentials.idl; sourceTree = "<group>"; };
     9106                57D846251FE895F600CA3682 /* Navigator+Credentials.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Navigator+Credentials.idl"; sourceTree = "<group>"; };
    91079107                57D846261FE895F800CA3682 /* NavigatorCredentials.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigatorCredentials.h; sourceTree = "<group>"; };
    91089108                57D846291FE99F6300CA3682 /* CredentialsContainer.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CredentialsContainer.idl; sourceTree = "<group>"; };
     
    93499349                5EA725CA1ACABCB500EAD17B /* NavigatorMediaDevices.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorMediaDevices.cpp; sourceTree = "<group>"; };
    93509350                5EA725CB1ACABCB500EAD17B /* NavigatorMediaDevices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigatorMediaDevices.h; sourceTree = "<group>"; };
    9351                 5EA725CC1ACABCB500EAD17B /* NavigatorMediaDevices.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorMediaDevices.idl; sourceTree = "<group>"; };
     9351                5EA725CC1ACABCB500EAD17B /* Navigator+MediaDevices.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Navigator+MediaDevices.idl"; sourceTree = "<group>"; };
    93529352                5EA725CD1ACABCD900EAD17B /* MediaDevices.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MediaDevices.cpp; sourceTree = "<group>"; };
    93539353                5EA725CE1ACABCD900EAD17B /* MediaDevices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaDevices.h; sourceTree = "<group>"; };
     
    94759475                6B507A21234BF34100BE7C62 /* NavigatorIsLoggedIn.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NavigatorIsLoggedIn.h; sourceTree = "<group>"; };
    94769476                6B507A22234BF34100BE7C62 /* NavigatorIsLoggedIn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorIsLoggedIn.cpp; sourceTree = "<group>"; };
    9477                 6B507A23234BF34100BE7C62 /* NavigatorIsLoggedIn.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = NavigatorIsLoggedIn.idl; sourceTree = "<group>"; };
     9477                6B507A23234BF34100BE7C62 /* Navigator+IsLoggedIn.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Navigator+IsLoggedIn.idl"; sourceTree = "<group>"; };
    94789478                6B693A2D1C51A82E00B03BEF /* ResourceLoadObserver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceLoadObserver.h; sourceTree = "<group>"; };
    94799479                6B693A331C51A95D00B03BEF /* ResourceLoadObserver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ResourceLoadObserver.cpp; sourceTree = "<group>"; };
    94809480                6BDB5DC0227BD3B800919770 /* DocumentStorageAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DocumentStorageAccess.h; sourceTree = "<group>"; };
    94819481                6BDB5DC1227BD3B800919770 /* DocumentStorageAccess.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentStorageAccess.cpp; sourceTree = "<group>"; };
    9482                 6BDB5DC5227CA0EB00919770 /* DocumentStorageAccess.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentStorageAccess.idl; sourceTree = "<group>"; };
     9482                6BDB5DC5227CA0EB00919770 /* Document+StorageAccess.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+StorageAccess.idl"; sourceTree = "<group>"; };
    94839483                6C4C96DA1AD4483500363F64 /* JSReadableByteStreamController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSReadableByteStreamController.cpp; sourceTree = "<group>"; };
    94849484                6C4C96DA1AD4483500365672 /* JSReadableStreamBYOBRequest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSReadableStreamBYOBRequest.cpp; sourceTree = "<group>"; };
     
    1005410054                7C011F4324FAD361005BEF10 /* GenerateSettings.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; name = GenerateSettings.rb; path = Scripts/GenerateSettings.rb; sourceTree = "<group>"; };
    1005510055                7C017C3D24969F1300DC0C02 /* NavigatorPlugins.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = NavigatorPlugins.idl; sourceTree = "<group>"; };
     10056                7C023200251A524800BA7BB6 /* DocumentSVG.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DocumentSVG.h; sourceTree = "<group>"; };
     10057                7C023201251A524800BA7BB6 /* DocumentSVG.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentSVG.cpp; sourceTree = "<group>"; };
    1005610058                7C029C6D2493C8F800268204 /* ColorTypes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ColorTypes.h; sourceTree = "<group>"; };
    1005710059                7C0CEF281E4A542C008DEB80 /* JSDOMConstructorBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSDOMConstructorBase.h; sourceTree = "<group>"; };
     
    1012310125                7C2BDD3B17C7F98B0038FF15 /* JSDOMGlobalObjectTask.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSDOMGlobalObjectTask.cpp; sourceTree = "<group>"; };
    1012410126                7C2BDD3C17C7F98B0038FF15 /* JSDOMGlobalObjectTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSDOMGlobalObjectTask.h; sourceTree = "<group>"; };
    10125                 7C2D7229250838B000539662 /* GlobalEventHandlersCSSTransitions.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = GlobalEventHandlersCSSTransitions.idl; sourceTree = "<group>"; };
    10126                 7C2D722C2508396300539662 /* GlobalEventHandlersCSSAnimations.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = GlobalEventHandlersCSSAnimations.idl; sourceTree = "<group>"; };
    10127                 7C2D722E25083A3400539662 /* GlobalEventHandlersPointerEvents.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = GlobalEventHandlersPointerEvents.idl; sourceTree = "<group>"; };
     10127                7C2D7229250838B000539662 /* GlobalEventHandlers+CSSTransitions.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "GlobalEventHandlers+CSSTransitions.idl"; sourceTree = "<group>"; };
     10128                7C2D722C2508396300539662 /* GlobalEventHandlers+CSSAnimations.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "GlobalEventHandlers+CSSAnimations.idl"; sourceTree = "<group>"; };
     10129                7C2D722E25083A3400539662 /* GlobalEventHandlers+PointerEvents.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "GlobalEventHandlers+PointerEvents.idl"; sourceTree = "<group>"; };
    1012810130                7C2E0BCF25106AC4005F3C87 /* WindowOrWorkerGlobalScopeFetch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WindowOrWorkerGlobalScopeFetch.h; sourceTree = "<group>"; };
    1012910131                7C2E0BD025106AC4005F3C87 /* WindowOrWorkerGlobalScopeFetch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = WindowOrWorkerGlobalScopeFetch.cpp; sourceTree = "<group>"; };
    10130                 7C2E0BD125106AC4005F3C87 /* WindowOrWorkerGlobalScopeFetch.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = WindowOrWorkerGlobalScopeFetch.idl; sourceTree = "<group>"; };
     10132                7C2E0BD125106AC4005F3C87 /* WindowOrWorkerGlobalScope+Fetch.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "WindowOrWorkerGlobalScope+Fetch.idl"; sourceTree = "<group>"; };
    1013110133                7C2E0BD92511800E005F3C87 /* NavigatorCookies.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = NavigatorCookies.idl; sourceTree = "<group>"; };
    1013210134                7C2FA60F1EA95A3200A03108 /* ResourceCryptographicDigest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ResourceCryptographicDigest.cpp; sourceTree = "<group>"; };
     
    1014110143                7C330A061DF9F95100D3395C /* JSPositionOptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSPositionOptions.h; sourceTree = "<group>"; };
    1014210144                7C33F3601B4A050400502CAF /* JSDocumentFragmentCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSDocumentFragmentCustom.cpp; sourceTree = "<group>"; };
    10143                 7C3655692506DDB700A7882B /* DocumentOrShadowRootStyleSheets.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentOrShadowRootStyleSheets.idl; sourceTree = "<group>"; };
    10144                 7C36556C2506DE9C00A7882B /* DocumentOrShadowRootPointerLock.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentOrShadowRootPointerLock.idl; sourceTree = "<group>"; };
    10145                 7C36556E2506DF9900A7882B /* DocumentOrShadowRootPictureInPicture.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentOrShadowRootPictureInPicture.idl; sourceTree = "<group>"; };
    10146                 7C3655702506E0A700A7882B /* DocumentOrShadowRootAnimations.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentOrShadowRootAnimations.idl; sourceTree = "<group>"; };
     10145                7C3655692506DDB700A7882B /* DocumentOrShadowRoot+CSSOM.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "DocumentOrShadowRoot+CSSOM.idl"; sourceTree = "<group>"; };
     10146                7C36556C2506DE9C00A7882B /* DocumentOrShadowRoot+PointerLock.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "DocumentOrShadowRoot+PointerLock.idl"; sourceTree = "<group>"; };
     10147                7C36556E2506DF9900A7882B /* DocumentOrShadowRoot+PictureInPicture.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "DocumentOrShadowRoot+PictureInPicture.idl"; sourceTree = "<group>"; };
     10148                7C3655702506E0A700A7882B /* DocumentOrShadowRoot+WebAnimations.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "DocumentOrShadowRoot+WebAnimations.idl"; sourceTree = "<group>"; };
    1014710149                7C3806DB2505B18900744A7B /* AnimationFrameProvider.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AnimationFrameProvider.idl; sourceTree = "<group>"; };
    10148                 7C3A8AA32509461F008C477F /* DocumentHTML.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentHTML.idl; sourceTree = "<group>"; };
    10149                 7C3A8AA625094859008C477F /* DocumentHTMLObsolete.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentHTMLObsolete.idl; sourceTree = "<group>"; };
    10150                 7C3A8AB425099F5A008C477F /* DocumentPageVisibility.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentPageVisibility.idl; sourceTree = "<group>"; };
    10151                 7C3A8AB625099FFD008C477F /* DocumentPointerLock.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentPointerLock.idl; sourceTree = "<group>"; };
    10152                 7C3A8AB82509A10F008C477F /* DocumentScrolling.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentScrolling.idl; sourceTree = "<group>"; };
    10153                 7C3A8ABA2509A199008C477F /* DocumentSelection.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentSelection.idl; sourceTree = "<group>"; };
     10150                7C3A8AA32509461F008C477F /* Document+HTML.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+HTML.idl"; sourceTree = "<group>"; };
     10151                7C3A8AA625094859008C477F /* Document+HTMLObsolete.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+HTMLObsolete.idl"; sourceTree = "<group>"; };
     10152                7C3A8AB425099F5A008C477F /* Document+PageVisibility.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+PageVisibility.idl"; sourceTree = "<group>"; };
     10153                7C3A8AB625099FFD008C477F /* Document+PointerLock.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+PointerLock.idl"; sourceTree = "<group>"; };
     10154                7C3A8AB82509A10F008C477F /* Document+CSSOMView.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+CSSOMView.idl"; sourceTree = "<group>"; };
     10155                7C3A8ABA2509A199008C477F /* Document+Selection.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+Selection.idl"; sourceTree = "<group>"; };
    1015410156                7C3A8ABC2509A256008C477F /* FontFaceSource.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = FontFaceSource.idl; sourceTree = "<group>"; };
    1015510157                7C3A8ABE2509A466008C477F /* XPathEvaluatorBase.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = XPathEvaluatorBase.idl; sourceTree = "<group>"; };
    10156                 7C3A8AC02509A602008C477F /* DocumentAnimations.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentAnimations.idl; sourceTree = "<group>"; };
    10157                 7C3A8AC22509A6CD008C477F /* DocumentUndoMananger.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentUndoMananger.idl; sourceTree = "<group>"; };
     10158                7C3A8AC02509A602008C477F /* Document+WebAnimations.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+WebAnimations.idl"; sourceTree = "<group>"; };
     10159                7C3A8AC22509A6CD008C477F /* Document+UndoMananger.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+UndoMananger.idl"; sourceTree = "<group>"; };
    1015810160                7C3A91E51C963B8800D1A7E3 /* ClipboardAccessPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClipboardAccessPolicy.h; sourceTree = "<group>"; };
    1015910161                7C3B796F1908757B00B47A2D /* UserMessageHandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UserMessageHandler.cpp; sourceTree = "<group>"; };
     
    1038910391                7CD70C4624A28CD700E61040 /* SVGTransformList.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = SVGTransformList.cpp; sourceTree = "<group>"; };
    1039010392                7CDA7912250E88F0007D1B36 /* InnerHTML.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = InnerHTML.idl; sourceTree = "<group>"; };
    10391                 7CDA7919250E8C92007D1B36 /* ElementDOMParsing.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = ElementDOMParsing.idl; sourceTree = "<group>"; };
     10393                7CDA7919250E8C92007D1B36 /* Element+DOMParsing.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Element+DOMParsing.idl"; sourceTree = "<group>"; };
    1039210394                7CDE73961F9BD59500390312 /* Settings.yaml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Settings.yaml; sourceTree = "<group>"; };
    1039310395                7CDE8EBC1F193BC500168FE7 /* CSSStyleDeclaration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CSSStyleDeclaration.cpp; sourceTree = "<group>"; };
     
    1043510437                7CE6CBFC187F394900D46BF5 /* FormatConverter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FormatConverter.cpp; sourceTree = "<group>"; };
    1043610438                7CE7FA591EF882300060C9D6 /* DocumentTouch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DocumentTouch.h; sourceTree = "<group>"; };
    10437                 7CE7FA5A1EF882300060C9D6 /* DocumentTouch.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentTouch.idl; sourceTree = "<group>"; };
     10439                7CE7FA5A1EF882300060C9D6 /* Document+Touch.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+Touch.idl"; sourceTree = "<group>"; };
    1043810440                7CE7FA5B1EF882300060C9D6 /* DocumentTouch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentTouch.cpp; sourceTree = "<group>"; };
    1043910441                7CEB57E91F95651500097AEC /* Settings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Settings.h; path = DerivedSources/WebCore/Settings.h; sourceTree = BUILT_PRODUCTS_DIR; };
     
    1055210554                8321507A1F27EA150095B136 /* NavigatorBeacon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorBeacon.cpp; sourceTree = "<group>"; };
    1055310555                8321507B1F27EA150095B136 /* NavigatorBeacon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NavigatorBeacon.h; sourceTree = "<group>"; };
    10554                 8321507C1F27EA150095B136 /* NavigatorBeacon.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = NavigatorBeacon.idl; sourceTree = "<group>"; };
     10556                8321507C1F27EA150095B136 /* Navigator+Beacon.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Navigator+Beacon.idl"; sourceTree = "<group>"; };
    1055510557                8326BF8924D35C20001F8A85 /* OverSampleType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OverSampleType.h; sourceTree = "<group>"; };
    1055610558                8326BF8B24D35C20001F8A85 /* OverSampleType.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = OverSampleType.idl; sourceTree = "<group>"; };
     
    1060710609                8356F97E24D9F809006C3E41 /* WebKitAudioListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WebKitAudioListener.h; sourceTree = "<group>"; };
    1060810610                835B680E1F548BDE0071F7F6 /* JSFileSystemEntryCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSFileSystemEntryCustom.cpp; sourceTree = "<group>"; };
    10609                 835D2D741F5F1FB800141DED /* HTMLInputElementEntriesAPI.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HTMLInputElementEntriesAPI.idl; sourceTree = "<group>"; };
     10611                835D2D741F5F1FB800141DED /* HTMLInputElement+EntriesAPI.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "HTMLInputElement+EntriesAPI.idl"; sourceTree = "<group>"; };
    1061010612                835D2D751F5F1FB800141DED /* HTMLInputElementEntriesAPI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTMLInputElementEntriesAPI.h; sourceTree = "<group>"; };
    1061110613                835D2D761F5F1FB800141DED /* HTMLInputElementEntriesAPI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HTMLInputElementEntriesAPI.cpp; sourceTree = "<group>"; };
     
    1138211384                9711460014EF009A00674FD9 /* NavigatorGeolocation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorGeolocation.cpp; sourceTree = "<group>"; };
    1138311385                9711460114EF009A00674FD9 /* NavigatorGeolocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigatorGeolocation.h; sourceTree = "<group>"; };
    11384                 9711460214EF009A00674FD9 /* NavigatorGeolocation.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorGeolocation.idl; sourceTree = "<group>"; };
     11386                9711460214EF009A00674FD9 /* Navigator+Geolocation.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Navigator+Geolocation.idl"; sourceTree = "<group>"; };
    1138511387                97205AAD123928CA00B17380 /* FTPDirectoryDocument.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FTPDirectoryDocument.cpp; sourceTree = "<group>"; };
    1138611388                97205AAE123928CA00B17380 /* FTPDirectoryDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTPDirectoryDocument.h; sourceTree = "<group>"; };
     
    1162211624                996E59DB1DF00D90006612B9 /* NavigatorWebDriver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorWebDriver.cpp; sourceTree = "<group>"; };
    1162311625                996E59DC1DF00D90006612B9 /* NavigatorWebDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigatorWebDriver.h; sourceTree = "<group>"; };
    11624                 996E59DD1DF00D90006612B9 /* NavigatorWebDriver.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorWebDriver.idl; sourceTree = "<group>"; };
     11626                996E59DD1DF00D90006612B9 /* Navigator+WebDriver.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Navigator+WebDriver.idl"; sourceTree = "<group>"; };
    1162511627                99D1B2D123AC143000811CF0 /* InspectorDebuggableType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorDebuggableType.h; sourceTree = "<group>"; };
    1162611628                9A528E8117D7F52F00AA9518 /* FloatingObjects.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FloatingObjects.cpp; sourceTree = "<group>"; };
     
    1229512297                A7DBF8DB1276919C006B6008 /* TextCheckingHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TextCheckingHelper.cpp; sourceTree = "<group>"; };
    1229612298                A7DBF8DC1276919C006B6008 /* TextCheckingHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextCheckingHelper.h; sourceTree = "<group>"; };
    12297                 A7F1F4BA17148BDB00CD4852 /* DOMWindowQuota.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DOMWindowQuota.idl; sourceTree = "<group>"; };
    12298                 A7F1F4BB17148BDB00CD4852 /* NavigatorStorageQuota.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = NavigatorStorageQuota.idl; sourceTree = "<group>"; };
     12299                A7F1F4BA17148BDB00CD4852 /* DOMWindow+Quota.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "DOMWindow+Quota.idl"; sourceTree = "<group>"; };
     12300                A7F1F4BB17148BDB00CD4852 /* Navigator+StorageQuota.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Navigator+StorageQuota.idl"; sourceTree = "<group>"; };
    1229912301                A7F1F4BC17148BDB00CD4852 /* StorageErrorCallback.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = StorageErrorCallback.idl; sourceTree = "<group>"; };
    1230012302                A7F1F4BD17148BDB00CD4852 /* StorageInfo.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = StorageInfo.idl; sourceTree = "<group>"; };
     
    1230212304                A7F1F4BF17148BDB00CD4852 /* StorageQuotaCallback.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = StorageQuotaCallback.idl; sourceTree = "<group>"; };
    1230312305                A7F1F4C017148BDB00CD4852 /* StorageUsageCallback.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = StorageUsageCallback.idl; sourceTree = "<group>"; };
    12304                 A7F1F4C117148BDB00CD4852 /* WorkerNavigatorStorageQuota.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = WorkerNavigatorStorageQuota.idl; sourceTree = "<group>"; };
     12306                A7F1F4C117148BDB00CD4852 /* WorkerNavigator+StorageQuota.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "WorkerNavigator+StorageQuota.idl"; sourceTree = "<group>"; };
    1230512307                A80A38FD0E50CC8200A25EBC /* PatternCG.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PatternCG.cpp; sourceTree = "<group>"; };
    1230612308                A80D67070E9E9DEB00E420F0 /* GraphicsContextPlatformPrivateCG.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GraphicsContextPlatformPrivateCG.h; sourceTree = "<group>"; };
     
    1254212544                A8CCBB46151F831600AB7CE9 /* DOMWindowWebDatabase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DOMWindowWebDatabase.cpp; sourceTree = "<group>"; };
    1254312545                A8CCBB47151F831600AB7CE9 /* DOMWindowWebDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMWindowWebDatabase.h; sourceTree = "<group>"; };
    12544                 A8CCBB4E151F835A00AB7CE9 /* DOMWindowWebDatabase.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DOMWindowWebDatabase.idl; sourceTree = "<group>"; };
     12546                A8CCBB4E151F835A00AB7CE9 /* DOMWindow+WebDatabase.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "DOMWindow+WebDatabase.idl"; sourceTree = "<group>"; };
    1254512547                A8CFF0480A154F09000A4234 /* FixedTableLayout.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = FixedTableLayout.cpp; sourceTree = "<group>"; };
    1254612548                A8CFF0490A154F09000A4234 /* AutoTableLayout.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AutoTableLayout.h; sourceTree = "<group>"; };
     
    1268312685                AA2A5AB816A485D500975A25 /* DOMWindowSpeechSynthesis.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DOMWindowSpeechSynthesis.cpp; sourceTree = "<group>"; };
    1268412686                AA2A5AB916A485D500975A25 /* DOMWindowSpeechSynthesis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DOMWindowSpeechSynthesis.h; sourceTree = "<group>"; };
    12685                 AA2A5ABA16A485D500975A25 /* DOMWindowSpeechSynthesis.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DOMWindowSpeechSynthesis.idl; sourceTree = "<group>"; };
     12687                AA2A5ABA16A485D500975A25 /* DOMWindow+SpeechSynthesis.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "DOMWindow+SpeechSynthesis.idl"; sourceTree = "<group>"; };
    1268612688                AA2A5ABD16A485D500975A25 /* SpeechSynthesis.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = SpeechSynthesis.cpp; sourceTree = "<group>"; };
    1268712689                AA2A5ABE16A485D500975A25 /* SpeechSynthesis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpeechSynthesis.h; sourceTree = "<group>"; };
     
    1282712829                B222781D0D00BF1F0071B782 /* SVGDocument.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SVGDocument.cpp; sourceTree = "<group>"; };
    1282812830                B222781E0D00BF1F0071B782 /* SVGDocument.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SVGDocument.h; sourceTree = "<group>"; };
    12829                 B222781F0D00BF1F0071B782 /* SVGDocument.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SVGDocument.idl; sourceTree = "<group>"; };
     12831                B222781F0D00BF1F0071B782 /* Document+SVG.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "Document+SVG.idl"; sourceTree = "<group>"; };
    1283012832                B22278200D00BF1F0071B782 /* SVGElement.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SVGElement.cpp; sourceTree = "<group>"; };
    1283112833                B22278210D00BF1F0071B782 /* SVGElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SVGElement.h; sourceTree = "<group>"; };
     
    1416514167                C90F65541B225396002163A1 /* MediaSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaSessionManager.h; sourceTree = "<group>"; };
    1416614168                C93458BB1B18D77E0088EE12 /* MediaRemoteControls.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MediaRemoteControls.idl; sourceTree = "<group>"; };
    14167                 C968B2E51B1E704500EF1F81 /* HTMLMediaElementMediaSession.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = HTMLMediaElementMediaSession.idl; sourceTree = "<group>"; };
     14169                C968B2E51B1E704500EF1F81 /* HTMLMediaElement+MediaSession.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "HTMLMediaElement+MediaSession.idl"; sourceTree = "<group>"; };
    1416814170                C968B2E61B1E72F700EF1F81 /* HTMLMediaElementMediaSession.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HTMLMediaElementMediaSession.h; sourceTree = "<group>"; };
    1416914171                C968B2E71B1E778100EF1F81 /* HTMLMediaElementMediaSession.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HTMLMediaElementMediaSession.cpp; sourceTree = "<group>"; };
     
    1437214374                CD8B5A40180D149A008B8E65 /* VideoTrackPrivateMediaSourceAVFObjC.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VideoTrackPrivateMediaSourceAVFObjC.mm; sourceTree = "<group>"; };
    1437314375                CD8B5A41180D149A008B8E65 /* VideoTrackPrivateMediaSourceAVFObjC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoTrackPrivateMediaSourceAVFObjC.h; sourceTree = "<group>"; };
    14374                 CD8B5A44180DD8D6008B8E65 /* VideoTrackMediaSource.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = VideoTrackMediaSource.idl; sourceTree = "<group>"; };
     14376                CD8B5A44180DD8D6008B8E65 /* VideoTrack+MediaSource.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "VideoTrack+MediaSource.idl"; sourceTree = "<group>"; };
    1437514377                CD8B5A45180DFF4E008B8E65 /* VideoTrackMediaSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoTrackMediaSource.h; sourceTree = "<group>"; };
    14376                 CD8B5A47180E1361008B8E65 /* TextTrackMediaSource.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = TextTrackMediaSource.idl; sourceTree = "<group>"; };
     14378                CD8B5A47180E1361008B8E65 /* TextTrack+MediaSource.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "TextTrack+MediaSource.idl"; sourceTree = "<group>"; };
    1437714379                CD8B5A48180E138B008B8E65 /* TextTrackMediaSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextTrackMediaSource.h; sourceTree = "<group>"; };
    14378                 CD8B5A4A180E17A3008B8E65 /* AudioTrackMediaSource.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = AudioTrackMediaSource.idl; sourceTree = "<group>"; };
     14380                CD8B5A4A180E17A3008B8E65 /* AudioTrack+MediaSource.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "AudioTrack+MediaSource.idl"; sourceTree = "<group>"; };
    1437914381                CD8B5A4B180E17C0008B8E65 /* AudioTrackMediaSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioTrackMediaSource.h; sourceTree = "<group>"; };
    1438014382                CD8C6C2622FDDA8F00A720AB /* JSRemotePlayback.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = JSRemotePlayback.cpp; sourceTree = "<group>"; };
     
    1438614388                CD8F667024C0F208000C421C /* SourceBufferParserWebM.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = SourceBufferParserWebM.cpp; sourceTree = "<group>"; };
    1438714389                CD8F667224C0F208000C421C /* SourceBufferParserWebM.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SourceBufferParserWebM.h; sourceTree = "<group>"; };
    14388                 CD92F50F2260FFEE00F87BB3 /* DocumentFullscreen.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DocumentFullscreen.idl; sourceTree = "<group>"; };
     14390                CD92F50F2260FFEE00F87BB3 /* Document+Fullscreen.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Document+Fullscreen.idl"; sourceTree = "<group>"; };
    1438914391                CD92F5102260FFEE00F87BB3 /* DocumentFullscreen.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DocumentFullscreen.h; sourceTree = "<group>"; };
    1439014392                CD92F5162261038200F87BB3 /* FullscreenManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FullscreenManager.h; sourceTree = "<group>"; };
     
    1442114423                CD9DE17E17AAD64E00EA386D /* DOMURLMediaSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DOMURLMediaSource.cpp; sourceTree = "<group>"; };
    1442214424                CD9DE17F17AAD64E00EA386D /* DOMURLMediaSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DOMURLMediaSource.h; sourceTree = "<group>"; };
    14423                 CD9DE18017AAD64E00EA386D /* DOMURLMediaSource.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DOMURLMediaSource.idl; sourceTree = "<group>"; };
     14425                CD9DE18017AAD64E00EA386D /* DOMURL+MediaSource.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "DOMURL+MediaSource.idl"; sourceTree = "<group>"; };
    1442414426                CDA130BB1FEB332C00F53254 /* NavigatorMediaCapabilities.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorMediaCapabilities.cpp; sourceTree = "<group>"; };
    1442514427                CDA130BD1FEB332D00F53254 /* MediaCapabilities.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MediaCapabilities.cpp; sourceTree = "<group>"; };
     
    1447214474                CDBD3D2E1FE85CBC0012C545 /* MediaDecodingType.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MediaDecodingType.idl; sourceTree = "<group>"; };
    1447314475                CDBD3D2F1FE85CBC0012C545 /* MediaCapabilities.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MediaCapabilities.idl; sourceTree = "<group>"; };
    14474                 CDBD3D311FE85CBE0012C545 /* NavigatorMediaCapabilities.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorMediaCapabilities.idl; sourceTree = "<group>"; };
     14476                CDBD3D311FE85CBE0012C545 /* Navigator+MediaCapabilities.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Navigator+MediaCapabilities.idl"; sourceTree = "<group>"; };
    1447514477                CDBD3D321FE85CBE0012C545 /* MediaCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaCapabilities.h; sourceTree = "<group>"; };
    1447614478                CDBD3D331FE85CBE0012C545 /* MediaCapabilitiesInfo.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MediaCapabilitiesInfo.idl; sourceTree = "<group>"; };
     
    1449114493                CDC26B3D160A62B00026757B /* LegacyMockCDM.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyMockCDM.h; sourceTree = "<group>"; };
    1449214494                CDC312E122FCD0B0001204EC /* RemotePlayback.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RemotePlayback.h; sourceTree = "<group>"; };
    14493                 CDC312E222FCD0B0001204EC /* HTMLMediaElementRemotePlayback.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = HTMLMediaElementRemotePlayback.idl; sourceTree = "<group>"; };
     14495                CDC312E222FCD0B0001204EC /* HTMLMediaElement+RemotePlayback.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "HTMLMediaElement+RemotePlayback.idl"; sourceTree = "<group>"; };
    1449414496                CDC312E322FCD0B0001204EC /* RemotePlayback.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = RemotePlayback.cpp; sourceTree = "<group>"; };
    1449514497                CDC312E422FCD0B0001204EC /* RemotePlaybackAvailabilityCallback.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = RemotePlaybackAvailabilityCallback.idl; sourceTree = "<group>"; };
     
    1469214694                D00487D222457BEA00EED7D9 /* WebGPUPipelineLayoutDescriptor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = WebGPUPipelineLayoutDescriptor.cpp; sourceTree = "<group>"; };
    1469314695                D00487E5226A634200EED7D9 /* WebGPUSwapChainDescriptor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = WebGPUSwapChainDescriptor.cpp; sourceTree = "<group>"; };
    14694                 D00487EB2274281200EED7D9 /* NavigatorGPU.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = NavigatorGPU.idl; sourceTree = "<group>"; };
     14696                D00487EB2274281200EED7D9 /* Navigator+GPU.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Navigator+GPU.idl"; sourceTree = "<group>"; };
    1469514697                D00487ED2274281300EED7D9 /* NavigatorGPU.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorGPU.cpp; sourceTree = "<group>"; };
    1469614698                D00487EE2274281400EED7D9 /* NavigatorGPU.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NavigatorGPU.h; sourceTree = "<group>"; };
    14697                 D00487FD2277AF8100EED7D9 /* WorkerNavigatorGPU.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = WorkerNavigatorGPU.idl; sourceTree = "<group>"; };
     14699                D00487FD2277AF8100EED7D9 /* WorkerNavigator+GPU.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "WorkerNavigator+GPU.idl"; sourceTree = "<group>"; };
    1469814700                D00487FE2277AF8200EED7D9 /* WorkerNavigatorGPU.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WorkerNavigatorGPU.h; sourceTree = "<group>"; };
    1469914701                D00D77FD2242ED450043F12C /* WebGPUComputePassEncoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WebGPUComputePassEncoder.h; sourceTree = "<group>"; };
     
    1572215724                E1EE8B0C2412B17000E794D6 /* XRFrame.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = XRFrame.idl; sourceTree = "<group>"; };
    1572315725                E1EE8B0D2412B17000E794D6 /* WebXRInputSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebXRInputSource.cpp; sourceTree = "<group>"; };
    15724                 E1EE8B0E2412B17000E794D6 /* NavigatorWebXR.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorWebXR.idl; sourceTree = "<group>"; };
     15726                E1EE8B0E2412B17000E794D6 /* Navigator+WebXR.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Navigator+WebXR.idl"; sourceTree = "<group>"; };
    1572515727                E1EE8B0F2412B17000E794D6 /* WebXRSession.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebXRSession.cpp; sourceTree = "<group>"; };
    1572615728                E1EE8B102412B17000E794D6 /* XRWebGLLayerInit.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = XRWebGLLayerInit.idl; sourceTree = "<group>"; };
     
    1612016122                F440E76F233D94D30063F9AB /* NavigatorClipboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigatorClipboard.h; sourceTree = "<group>"; };
    1612116123                F440E770233D94D40063F9AB /* ClipboardItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClipboardItem.h; sourceTree = "<group>"; };
    16122                 F440E771233D94D40063F9AB /* NavigatorClipboard.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorClipboard.idl; sourceTree = "<group>"; };
     16124                F440E771233D94D40063F9AB /* Navigator+Clipboard.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Navigator+Clipboard.idl"; sourceTree = "<group>"; };
    1612316125                F440E772233D94D50063F9AB /* Clipboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Clipboard.h; sourceTree = "<group>"; };
    1612416126                F440E773233D94D50063F9AB /* NavigatorClipboard.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorClipboard.cpp; sourceTree = "<group>"; };
     
    1669816700                        isa = PBXGroup;
    1669916701                        children = (
     16702                                C968B2E51B1E704500EF1F81 /* HTMLMediaElement+MediaSession.idl */,
    1670016703                                C968B2E71B1E778100EF1F81 /* HTMLMediaElementMediaSession.cpp */,
    1670116704                                C968B2E61B1E72F700EF1F81 /* HTMLMediaElementMediaSession.h */,
    16702                                 C968B2E51B1E704500EF1F81 /* HTMLMediaElementMediaSession.idl */,
    1670316705                                C90843CD1B18E47D00B68564 /* MediaRemoteControls.cpp */,
    1670416706                                C90843CE1B18E47D00B68564 /* MediaRemoteControls.h */,
     
    1675016752                                07C1C0E01BFB600100BD2256 /* MediaTrackSupportedConstraints.h */,
    1675116753                                07C1C0E11BFB600100BD2256 /* MediaTrackSupportedConstraints.idl */,
     16754                                5EA725CC1ACABCB500EAD17B /* Navigator+MediaDevices.idl */,
    1675216755                                5EA725CA1ACABCB500EAD17B /* NavigatorMediaDevices.cpp */,
    1675316756                                5EA725CB1ACABCB500EAD17B /* NavigatorMediaDevices.h */,
    16754                                 5EA725CC1ACABCB500EAD17B /* NavigatorMediaDevices.idl */,
    1675516757                                0704A4051D6DE9F10086DCDB /* OverconstrainedError.h */,
    1675616758                                0704A4031D6DE9F10086DCDB /* OverconstrainedError.idl */,
     
    1842118423                        isa = PBXGroup;
    1842218424                        children = (
    18423                                 7C36556E2506DF9900A7882B /* DocumentOrShadowRootPictureInPicture.idl */,
     18425                                1DEF06DE233D2E1C00EE228D /* Document+PictureInPicture.idl */,
     18426                                7C36556E2506DF9900A7882B /* DocumentOrShadowRoot+PictureInPicture.idl */,
    1842418427                                1DEF06DC233D2E1C00EE228D /* DocumentPictureInPicture.cpp */,
    1842518428                                1DEF06DD233D2E1C00EE228D /* DocumentPictureInPicture.h */,
    18426                                 1DEF06DE233D2E1C00EE228D /* DocumentPictureInPicture.idl */,
    1842718429                                1DEF06CB233C3D1500EE228D /* EnterPictureInPictureEvent.cpp */,
    1842818430                                1DEF06CA233C3D0B00EE228D /* EnterPictureInPictureEvent.h */,
    1842918431                                1DEF06D0233C3D4100EE228D /* EnterPictureInPictureEvent.idl */,
     18432                                1DEF06CF233C3D3800EE228D /* HTMLVideoElement+PictureInPicture.idl */,
    1843018433                                1DEF06D2233C3D5600EE228D /* HTMLVideoElementPictureInPicture.cpp */,
    1843118434                                1DEF06CC233C3D2000EE228D /* HTMLVideoElementPictureInPicture.h */,
    18432                                 1DEF06CF233C3D3800EE228D /* HTMLVideoElementPictureInPicture.idl */,
    1843318435                                1DEF06CE233C3D3100EE228D /* PictureInPictureWindow.cpp */,
    1843418436                                1DEF06CD233C3D2A00EE228D /* PictureInPictureWindow.h */,
     
    1879318795                                41380C221F34369000155FDA /* DOMCacheStorage.h */,
    1879418796                                41380C241F34369700155FDA /* DOMCacheStorage.idl */,
     18797                                41380C2B1F343E2F00155FDA /* DOMWindow+Caches.idl */,
    1879518798                                41FB278E1F34C28200795487 /* DOMWindowCaches.cpp */,
    1879618799                                41FB278C1F34C28200795487 /* DOMWindowCaches.h */,
    18797                                 41380C2B1F343E2F00155FDA /* DOMWindowCaches.idl */,
    1879818800                                418938AF2429F9AB007FDC41 /* RetrieveRecordsOptions.h */,
    1879918801                                41A7D34F1F438D10008988DE /* WorkerCacheStorageConnection.cpp */,
    1880018802                                41A7D3501F438D10008988DE /* WorkerCacheStorageConnection.h */,
     18803                                41380C2A1F343E2F00155FDA /* WorkerGlobalScope+Caches.idl */,
    1880118804                                41FB278F1F34C28200795487 /* WorkerGlobalScopeCaches.cpp */,
    1880218805                                41FB278D1F34C28200795487 /* WorkerGlobalScopeCaches.h */,
    18803                                 41380C2A1F343E2F00155FDA /* WorkerGlobalScopeCaches.idl */,
    1880418806                        );
    1880518807                        path = cache;
     
    1914019142                                413015D61C7B570400091C6E /* FetchResponse.h */,
    1914119143                                413015D71C7B570400091C6E /* FetchResponse.idl */,
     19144                                7C2E0BD125106AC4005F3C87 /* WindowOrWorkerGlobalScope+Fetch.idl */,
    1914219145                                7C2E0BD025106AC4005F3C87 /* WindowOrWorkerGlobalScopeFetch.cpp */,
    1914319146                                7C2E0BCF25106AC4005F3C87 /* WindowOrWorkerGlobalScopeFetch.h */,
    19144                                 7C2E0BD125106AC4005F3C87 /* WindowOrWorkerGlobalScopeFetch.idl */,
    1914519147                        );
    1914619148                        path = fetch;
     
    2006620068                                51A9D9E7195B931F001B2B5C /* GamepadManager.cpp */,
    2006720069                                51A9D9E8195B931F001B2B5C /* GamepadManager.h */,
     20070                                51A4BB0F1954D62700FA5C2E /* Navigator+Gamepad.idl */,
    2006820071                                51A4BB0D1954D62700FA5C2E /* NavigatorGamepad.cpp */,
    2006920072                                51A4BB0E1954D62700FA5C2E /* NavigatorGamepad.h */,
    20070                                 51A4BB0F1954D62700FA5C2E /* NavigatorGamepad.idl */,
    2007120073                        );
    2007220074                        path = gamepad;
     
    2087220874                                77D510161ED6021B00DA4C87 /* CredentialsContainer.h */,
    2087320875                                57D846291FE99F6300CA3682 /* CredentialsContainer.idl */,
     20876                                57D846251FE895F600CA3682 /* Navigator+Credentials.idl */,
    2087420877                                57D846241FE895F500CA3682 /* NavigatorCredentials.cpp */,
    2087520878                                57D846261FE895F800CA3682 /* NavigatorCredentials.h */,
    20876                                 57D846251FE895F600CA3682 /* NavigatorCredentials.idl */,
    2087720879                        );
    2087820880                        path = credentialmanagement;
     
    2154121543                                93EB355E09E37FD600F43799 /* MouseEventWithHitTestResults.cpp */,
    2154221544                                935C476209AC4CE600A6AAB4 /* MouseEventWithHitTestResults.h */,
     21545                                6B507A23234BF34100BE7C62 /* Navigator+IsLoggedIn.idl */,
    2154321546                                A9C6E5A30D746458006442E9 /* Navigator.cpp */,
    2154421547                                A9C6E5A40D746458006442E9 /* Navigator.h */,
     
    2155021553                                6B507A22234BF34100BE7C62 /* NavigatorIsLoggedIn.cpp */,
    2155121554                                6B507A21234BF34100BE7C62 /* NavigatorIsLoggedIn.h */,
    21552                                 6B507A23234BF34100BE7C62 /* NavigatorIsLoggedIn.idl */,
    2155321555                                7C5BEA3B1E9EE77100CC517B /* NavigatorLanguage.idl */,
    2155421556                                7C5BEA3C1E9EE77100CC517B /* NavigatorOnLine.idl */,
     
    2188321885                                715AD71F2050512400D592DC /* DeclarativeAnimation.cpp */,
    2188421886                                715AD71D2050512400D592DC /* DeclarativeAnimation.h */,
    21885                                 7C3A8AC02509A602008C477F /* DocumentAnimations.idl */,
    21886                                 7C3655702506E0A700A7882B /* DocumentOrShadowRootAnimations.idl */,
     21887                                7C3A8AC02509A602008C477F /* Document+WebAnimations.idl */,
     21888                                7C3655702506E0A700A7882B /* DocumentOrShadowRoot+WebAnimations.idl */,
    2188721889                                71025EC41F99F096004A250C /* DocumentTimeline.cpp */,
    2188821890                                71025EC51F99F096004A250C /* DocumentTimeline.h */,
     
    2190021902                                713F1D5923DF1D7D003F5EFA /* GetAnimationsOptions.h */,
    2190121903                                713F1D5723DF1D7D003F5EFA /* GetAnimationsOptions.idl */,
    21902                                 7C2D722C2508396300539662 /* GlobalEventHandlersCSSAnimations.idl */,
    21903                                 7C2D7229250838B000539662 /* GlobalEventHandlersCSSTransitions.idl */,
     21904                                7C2D722C2508396300539662 /* GlobalEventHandlers+CSSAnimations.idl */,
     21905                                7C2D7229250838B000539662 /* GlobalEventHandlers+CSSTransitions.idl */,
    2190421906                                71247E331FEA5F80008C08CE /* IterationCompositeOperation.h */,
    2190521907                                71247E311FEA5F7E008C08CE /* IterationCompositeOperation.idl */,
     
    2233022332                        isa = PBXGroup;
    2233122333                        children = (
     22334                                8321507C1F27EA150095B136 /* Navigator+Beacon.idl */,
    2233222335                                8321507A1F27EA150095B136 /* NavigatorBeacon.cpp */,
    2233322336                                8321507B1F27EA150095B136 /* NavigatorBeacon.h */,
    22334                                 8321507C1F27EA150095B136 /* NavigatorBeacon.idl */,
    2233522337                        );
    2233622338                        path = beacon;
     
    2237322375                                83FB336C1F508A4E00986E54 /* FileSystemFileEntry.h */,
    2237422376                                83FB33671F508A4E00986E54 /* FileSystemFileEntry.idl */,
     22377                                835D2D741F5F1FB800141DED /* HTMLInputElement+EntriesAPI.idl */,
    2237522378                                835D2D761F5F1FB800141DED /* HTMLInputElementEntriesAPI.cpp */,
    2237622379                                835D2D751F5F1FB800141DED /* HTMLInputElementEntriesAPI.h */,
    22377                                 835D2D741F5F1FB800141DED /* HTMLInputElementEntriesAPI.idl */,
    2237822380                        );
    2237922381                        path = entriesapi;
     
    2243322435                        isa = PBXGroup;
    2243422436                        children = (
     22437                                A7F1F4BA17148BDB00CD4852 /* DOMWindow+Quota.idl */,
    2243522438                                89F60B0A157F686D0075E157 /* DOMWindowQuota.h */,
    22436                                 A7F1F4BA17148BDB00CD4852 /* DOMWindowQuota.idl */,
     22439                                A7F1F4BB17148BDB00CD4852 /* Navigator+StorageQuota.idl */,
    2243722440                                89FD58D816EEDBD400E183F0 /* NavigatorStorageQuota.h */,
    22438                                 A7F1F4BB17148BDB00CD4852 /* NavigatorStorageQuota.idl */,
    2243922441                                A7F1F4BC17148BDB00CD4852 /* StorageErrorCallback.idl */,
    2244022442                                A7F1F4BD17148BDB00CD4852 /* StorageInfo.idl */,
     
    2244222444                                A7F1F4BF17148BDB00CD4852 /* StorageQuotaCallback.idl */,
    2244322445                                A7F1F4C017148BDB00CD4852 /* StorageUsageCallback.idl */,
     22446                                A7F1F4C117148BDB00CD4852 /* WorkerNavigator+StorageQuota.idl */,
    2244422447                                1ABC7108170E5E1B00F9A9D6 /* WorkerNavigatorStorageQuota.h */,
    22445                                 A7F1F4C117148BDB00CD4852 /* WorkerNavigatorStorageQuota.idl */,
    2244622448                        );
    2244722449                        path = quota;
     
    2329223294                                46C83EFB1A9BBE2900A79A41 /* GeoNotifier.cpp */,
    2329323295                                46C83EFC1A9BBE2900A79A41 /* GeoNotifier.h */,
     23296                                9711460214EF009A00674FD9 /* Navigator+Geolocation.idl */,
    2329423297                                9711460014EF009A00674FD9 /* NavigatorGeolocation.cpp */,
    2329523298                                9711460114EF009A00674FD9 /* NavigatorGeolocation.h */,
    23296                                 9711460214EF009A00674FD9 /* NavigatorGeolocation.idl */,
    2329723299                                9746AF1C14F4DDE6003E7A70 /* PositionCallback.h */,
    2329823300                                9746AF1D14F4DDE6003E7A70 /* PositionCallback.idl */,
     
    2331123313                                510A58EE1BAB71E000C19282 /* server */,
    2331223314                                510A58E11BAA409800C19282 /* shared */,
     23315                                51D7196E181106DF0016DC51 /* DOMWindow+IndexedDatabase.idl */,
    2331323316                                51D7196C181106DF0016DC51 /* DOMWindowIndexedDatabase.cpp */,
    2331423317                                51D7196D181106DF0016DC51 /* DOMWindowIndexedDatabase.h */,
    23315                                 51D7196E181106DF0016DC51 /* DOMWindowIndexedDatabase.idl */,
    2331623318                                51714EA71CF4DE87004723C4 /* IDBActiveDOMObject.h */,
    2331723319                                51645B541B9F88E800F789CE /* IDBCursor.cpp */,
     
    2337423376                                51D719AD181106E00016DC51 /* IDBVersionChangeEvent.idl */,
    2337523377                                51D719AE181106E00016DC51 /* IndexedDB.h */,
     23378                                51D719B3181106E00016DC51 /* WorkerGlobalScope+IndexedDatabase.idl */,
    2337623379                                51D719B1181106E00016DC51 /* WorkerGlobalScopeIndexedDatabase.cpp */,
    2337723380                                51D719B2181106E00016DC51 /* WorkerGlobalScopeIndexedDatabase.h */,
    23378                                 51D719B3181106E00016DC51 /* WorkerGlobalScopeIndexedDatabase.idl */,
    2337923381                        );
    2338023382                        path = indexeddb;
     
    2348923491                                97BC69EF1505F081001B74AC /* DatabaseTracker.cpp */,
    2349023492                                97BC69F01505F081001B74AC /* DatabaseTracker.h */,
     23493                                A8CCBB4E151F835A00AB7CE9 /* DOMWindow+WebDatabase.idl */,
    2349123494                                A8CCBB46151F831600AB7CE9 /* DOMWindowWebDatabase.cpp */,
    2349223495                                A8CCBB47151F831600AB7CE9 /* DOMWindowWebDatabase.h */,
    23493                                 A8CCBB4E151F835A00AB7CE9 /* DOMWindowWebDatabase.idl */,
    2349423496                                FE9E89F916E2DC0400A908F8 /* OriginLock.cpp */,
    2349523497                                FE9E89FA16E2DC0400A908F8 /* OriginLock.h */,
     
    2358923591                        isa = PBXGroup;
    2359023592                        children = (
     23593                                996E59DD1DF00D90006612B9 /* Navigator+WebDriver.idl */,
    2359123594                                996E59DB1DF00D90006612B9 /* NavigatorWebDriver.cpp */,
    2359223595                                996E59DC1DF00D90006612B9 /* NavigatorWebDriver.h */,
    23593                                 996E59DD1DF00D90006612B9 /* NavigatorWebDriver.idl */,
    2359423596                        );
    2359523597                        path = webdriver;
     
    2520325205                        isa = PBXGroup;
    2520425206                        children = (
     25207                                AA2A5ABA16A485D500975A25 /* DOMWindow+SpeechSynthesis.idl */,
    2520525208                                AA2A5AB816A485D500975A25 /* DOMWindowSpeechSynthesis.cpp */,
    2520625209                                AA2A5AB916A485D500975A25 /* DOMWindowSpeechSynthesis.h */,
    25207                                 AA2A5ABA16A485D500975A25 /* DOMWindowSpeechSynthesis.idl */,
    2520825210                                AA2A5ABD16A485D500975A25 /* SpeechSynthesis.cpp */,
    2520925211                                AA2A5ABE16A485D500975A25 /* SpeechSynthesis.h */,
     
    2526025262                        isa = PBXGroup;
    2526125263                        children = (
     25264                                CD8B5A4A180E17A3008B8E65 /* AudioTrack+MediaSource.idl */,
    2526225265                                CD8B5A4B180E17C0008B8E65 /* AudioTrackMediaSource.h */,
    25263                                 CD8B5A4A180E17A3008B8E65 /* AudioTrackMediaSource.idl */,
     25266                                CD9DE18017AAD64E00EA386D /* DOMURL+MediaSource.idl */,
    2526425267                                CD9DE17E17AAD64E00EA386D /* DOMURLMediaSource.cpp */,
    2526525268                                CD9DE17F17AAD64E00EA386D /* DOMURLMediaSource.h */,
    25266                                 CD9DE18017AAD64E00EA386D /* DOMURLMediaSource.idl */,
    2526725269                                CD3A495517A9D01B00274E42 /* MediaSource.cpp */,
    2526825270                                CD3A495617A9D01B00274E42 /* MediaSource.h */,
     
    2527825280                                CD3A495C17A9D01B00274E42 /* SourceBufferList.h */,
    2527925281                                CD3A495D17A9D01B00274E42 /* SourceBufferList.idl */,
     25282                                CD8B5A47180E1361008B8E65 /* TextTrack+MediaSource.idl */,
    2528025283                                CD8B5A48180E138B008B8E65 /* TextTrackMediaSource.h */,
    25281                                 CD8B5A47180E1361008B8E65 /* TextTrackMediaSource.idl */,
    2528225284                                CDE83DAF183C44060031EAA3 /* VideoPlaybackQuality.cpp */,
    2528325285                                CDE83DB0183C44060031EAA3 /* VideoPlaybackQuality.h */,
    2528425286                                CDE83DB3183C441E0031EAA3 /* VideoPlaybackQuality.idl */,
     25287                                CD8B5A44180DD8D6008B8E65 /* VideoTrack+MediaSource.idl */,
    2528525288                                CD8B5A45180DFF4E008B8E65 /* VideoTrackMediaSource.h */,
    25286                                 CD8B5A44180DD8D6008B8E65 /* VideoTrackMediaSource.idl */,
    2528725289                        );
    2528825290                        path = mediasource;
     
    2536925371                                B25598860D00D8B800BB825C /* graphics */,
    2537025372                                081CDFBD126ECFE800D215CA /* properties */,
     25373                                B222781F0D00BF1F0071B782 /* Document+SVG.idl */,
     25374                                7C023201251A524800BA7BB6 /* DocumentSVG.cpp */,
     25375                                7C023200251A524800BA7BB6 /* DocumentSVG.h */,
    2537125376                                B22277CD0D00BF1F0071B782 /* GradientAttributes.h */,
    2537225377                                B22277CE0D00BF1F0071B782 /* LinearGradientAttributes.h */,
     
    2543925444                                B222781D0D00BF1F0071B782 /* SVGDocument.cpp */,
    2544025445                                B222781E0D00BF1F0071B782 /* SVGDocument.h */,
    25441                                 B222781F0D00BF1F0071B782 /* SVGDocument.idl */,
    2544225446                                B28C6A1E0D00C44800334AA4 /* SVGDocumentExtensions.cpp */,
    2544325447                                B28C6A1F0D00C44800334AA4 /* SVGDocumentExtensions.h */,
     
    2740627410                                2D9BF73F1DBFDC0F007A7D99 /* MediaKeySystemMediaCapability.h */,
    2740727411                                2D9BF6FB1DBFB71F007A7D99 /* MediaKeySystemMediaCapability.idl */,
     27412                                2D9BF6FC1DBFB71F007A7D99 /* Navigator+EME.idl */,
    2740827413                                2D9BF7401DBFDC0F007A7D99 /* NavigatorEME.cpp */,
    2740927414                                2D9BF7411DBFDC0F007A7D99 /* NavigatorEME.h */,
    27410                                 2D9BF6FC1DBFB71F007A7D99 /* NavigatorEME.idl */,
    2741127415                        );
    2741227416                        path = encryptedmedia;
     
    2747627480                                CDBD3D2A1FE85CBA0012C545 /* MediaEncodingConfiguration.idl */,
    2747727481                                CDBD3D2D1FE85CBC0012C545 /* MediaEncodingType.idl */,
     27482                                CDBD3D311FE85CBE0012C545 /* Navigator+MediaCapabilities.idl */,
    2747827483                                CDA130BB1FEB332C00F53254 /* NavigatorMediaCapabilities.cpp */,
    2747927484                                CDBD3D391FE85CC10012C545 /* NavigatorMediaCapabilities.h */,
    27480                                 CDBD3D311FE85CBE0012C545 /* NavigatorMediaCapabilities.idl */,
    2748127485                                CD4E4E622357B3AD007895C3 /* TransferFunction.idl */,
    2748227486                                CDBD3D281FE85CB80012C545 /* VideoConfiguration.idl */,
     
    2748827492                        isa = PBXGroup;
    2748927493                        children = (
     27494                                CDC312E222FCD0B0001204EC /* HTMLMediaElement+RemotePlayback.idl */,
    2749027495                                CDC312E522FCD0B0001204EC /* HTMLMediaElementRemotePlayback.h */,
    27491                                 CDC312E222FCD0B0001204EC /* HTMLMediaElementRemotePlayback.idl */,
    2749227496                                CDC312E322FCD0B0001204EC /* RemotePlayback.cpp */,
    2749327497                                CDC312E122FCD0B0001204EC /* RemotePlayback.h */,
     
    2761627620                                D0D8649821BA19A7003C983C /* GPUVertexBufferDescriptor.idl */,
    2761727621                                D0D8649421BA173D003C983C /* GPUVertexInputDescriptor.idl */,
     27622                                D00487EB2274281200EED7D9 /* Navigator+GPU.idl */,
    2761827623                                D00487ED2274281300EED7D9 /* NavigatorGPU.cpp */,
    2761927624                                D00487EE2274281400EED7D9 /* NavigatorGPU.h */,
    27620                                 D00487EB2274281200EED7D9 /* NavigatorGPU.idl */,
    2762127625                                D00F5947216EFE54000D71DB /* WebGPU.cpp */,
    2762227626                                D00F5946216EFE54000D71DB /* WebGPU.h */,
     
    2771427718                                D0EACF872193EE4E000FA75C /* WebGPUTextureView.h */,
    2771527719                                D0EACF892193EE4E000FA75C /* WebGPUTextureView.idl */,
     27720                                D00487FD2277AF8100EED7D9 /* WorkerNavigator+GPU.idl */,
    2771627721                                D0CAAD532277C2A600801CDF /* WorkerNavigatorGPU.cpp */,
    2771727722                                D00487FE2277AF8200EED7D9 /* WorkerNavigatorGPU.h */,
    27718                                 D00487FD2277AF8100EED7D9 /* WorkerNavigatorGPU.idl */,
    2771927723                        );
    2772027724                        path = webgpu;
     
    2797627980                        isa = PBXGroup;
    2797727981                        children = (
     27982                                E1EE8B0E2412B17000E794D6 /* Navigator+WebXR.idl */,
    2797827983                                E1EE8AF12412B17000E794D6 /* NavigatorWebXR.cpp */,
    2797927984                                E1EE8ACA2412B17000E794D6 /* NavigatorWebXR.h */,
    27980                                 E1EE8B0E2412B17000E794D6 /* NavigatorWebXR.idl */,
    2798127985                                E1EE8AD32412B17000E794D6 /* WebXRBoundedReferenceSpace.cpp */,
    2798227986                                E1EE8AD12412B17000E794D6 /* WebXRBoundedReferenceSpace.h */,
     
    2849028494                                F46C44812346547A0039A79D /* ClipboardItemPasteboardDataSource.cpp */,
    2849128495                                F46C44802346547A0039A79D /* ClipboardItemPasteboardDataSource.h */,
     28496                                F440E771233D94D40063F9AB /* Navigator+Clipboard.idl */,
    2849228497                                F440E773233D94D50063F9AB /* NavigatorClipboard.cpp */,
    2849328498                                F440E76F233D94D30063F9AB /* NavigatorClipboard.h */,
    28494                                 F440E771233D94D40063F9AB /* NavigatorClipboard.idl */,
    2849528499                        );
    2849628500                        path = "async-clipboard";
     
    2871728721                                A8D0651C0A23C1FE005E7203 /* DeprecatedCSSOMValueList.idl */,
    2871828722                                0FA0A0E523AEAA35000EEB94 /* dialog.css */,
    28719                                 7C3655692506DDB700A7882B /* DocumentOrShadowRootStyleSheets.idl */,
     28723                                7C3655692506DDB700A7882B /* DocumentOrShadowRoot+CSSOM.idl */,
    2872028724                                4BDA3FF82151B6F200FD6604 /* DOMCSSCustomPropertyDescriptor.h */,
    2872128725                                4BDA3FFA2151B6F300FD6604 /* DOMCSSCustomPropertyDescriptor.idl */,
     28726                                4B6B5CB62163DC1A00603817 /* DOMCSSNamespace+CSSPainting.idl */,
     28727                                4BDA3FF52151B6F000FD6604 /* DOMCSSNamespace+CSSPropertiesandValues.idl */,
    2872228728                                FD677735195CAB200072E0D3 /* DOMCSSNamespace.cpp */,
    2872328729                                FC9A0F72164094CF003D6B8D /* DOMCSSNamespace.h */,
     
    2872528731                                4B6B5CB92163ED3200603817 /* DOMCSSPaintWorklet.cpp */,
    2872628732                                4B6B5CB82163EC0700603817 /* DOMCSSPaintWorklet.h */,
    28727                                 4B6B5CB62163DC1A00603817 /* DOMCSSPaintWorklet.idl */,
    2872828733                                4BDA3FF72151B6F100FD6604 /* DOMCSSRegisterCustomProperty.cpp */,
    2872928734                                4BDA3FF92151B6F300FD6604 /* DOMCSSRegisterCustomProperty.h */,
    28730                                 4BDA3FF52151B6F000FD6604 /* DOMCSSRegisterCustomProperty.idl */,
    2873128735                                836ACEC41ECA6654004BD012 /* DOMMatrix.cpp */,
    2873228736                                836ACEC51ECA6654004BD012 /* DOMMatrix.h */,
     
    2925529259                                465EDD9F222F4EC300B46E16 /* DeviceOrientationOrMotionPermissionState.h */,
    2925629260                                465EDDA0222F4EC400B46E16 /* DeviceOrientationOrMotionPermissionState.idl */,
     29261                                7C3A8AB82509A10F008C477F /* Document+CSSOMView.idl */,
     29262                                CD92F50F2260FFEE00F87BB3 /* Document+Fullscreen.idl */,
     29263                                7C3A8AA32509461F008C477F /* Document+HTML.idl */,
     29264                                7C3A8AA625094859008C477F /* Document+HTMLObsolete.idl */,
     29265                                7C3A8AB425099F5A008C477F /* Document+PageVisibility.idl */,
     29266                                7C3A8AB625099FFD008C477F /* Document+PointerLock.idl */,
     29267                                7C3A8ABA2509A199008C477F /* Document+Selection.idl */,
     29268                                6BDB5DC5227CA0EB00919770 /* Document+StorageAccess.idl */,
     29269                                7CE7FA5A1EF882300060C9D6 /* Document+Touch.idl */,
     29270                                7C3A8AC22509A6CD008C477F /* Document+UndoMananger.idl */,
    2925729271                                A8185F3409765765005826D9 /* Document.cpp */,
    2925829272                                A8185F3809765765005826D9 /* Document.h */,
     
    2926329277                                1A494ED50A123F1A00FDAFC1 /* DocumentFragment.idl */,
    2926429278                                CD92F5102260FFEE00F87BB3 /* DocumentFullscreen.h */,
    29265                                 CD92F50F2260FFEE00F87BB3 /* DocumentFullscreen.idl */,
    29266                                 7C3A8AA32509461F008C477F /* DocumentHTML.idl */,
    29267                                 7C3A8AA625094859008C477F /* DocumentHTMLObsolete.idl */,
    2926829279                                ED2BA83B09A24B91006C0AC4 /* DocumentMarker.h */,
    2926929280                                CE057FA31220731100A476D5 /* DocumentMarkerController.cpp */,
    2927029281                                CE057FA41220731100A476D5 /* DocumentMarkerController.h */,
     29282                                7C36556C2506DE9C00A7882B /* DocumentOrShadowRoot+PointerLock.idl */,
    2927129283                                9B0FE8731D9E02DF004A8ACB /* DocumentOrShadowRoot.idl */,
    29272                                 7C36556C2506DE9C00A7882B /* DocumentOrShadowRootPointerLock.idl */,
    29273                                 7C3A8AB425099F5A008C477F /* DocumentPageVisibility.idl */,
    2927429284                                A8C2280D11D4A59700D5A7D3 /* DocumentParser.cpp */,
    2927529285                                BCCFBAE70B5152ED0001F1D7 /* DocumentParser.h */,
    29276                                 7C3A8AB625099FFD008C477F /* DocumentPointerLock.idl */,
    29277                                 7C3A8AB82509A10F008C477F /* DocumentScrolling.idl */,
    29278                                 7C3A8ABA2509A199008C477F /* DocumentSelection.idl */,
    2927929286                                AD6E71AA1668899D00320C13 /* DocumentSharedObjectPool.cpp */,
    2928029287                                AD6E71AB1668899D00320C13 /* DocumentSharedObjectPool.h */,
    2928129288                                6BDB5DC1227BD3B800919770 /* DocumentStorageAccess.cpp */,
    2928229289                                6BDB5DC0227BD3B800919770 /* DocumentStorageAccess.h */,
    29283                                 6BDB5DC5227CA0EB00919770 /* DocumentStorageAccess.idl */,
    2928429290                                86D982F6125C154000AD9E3D /* DocumentTiming.h */,
    2928529291                                7CE7FA5B1EF882300060C9D6 /* DocumentTouch.cpp */,
    2928629292                                7CE7FA591EF882300060C9D6 /* DocumentTouch.h */,
    29287                                 7CE7FA5A1EF882300060C9D6 /* DocumentTouch.idl */,
    2928829293                                A8185F3209765765005826D9 /* DocumentType.cpp */,
    2928929294                                A8185F3109765765005826D9 /* DocumentType.h */,
    2929029295                                93EEC1E809C2877700C515D1 /* DocumentType.idl */,
    29291                                 7C3A8AC22509A6CD008C477F /* DocumentUndoMananger.idl */,
    2929229296                                978D07BD145A0F6C0096908D /* DOMException.cpp */,
    2929329297                                BC60D6E80D28D83400B9918F /* DOMException.h */,
     
    2932929333                                46E0C0DA23C006B3005E47AE /* DragEvent.h */,
    2933029334                                46E0C0DD23C006B4005E47AE /* DragEvent.idl */,
     29335                                7CDA7919250E8C92007D1B36 /* Element+DOMParsing.idl */,
    2933129336                                A8C4A7F609D563270003AC8D /* Element.cpp */,
    2933229337                                A8C4A7F509D563270003AC8D /* Element.h */,
     
    2933829343                                B5B7A16F17C1080600E4AA0A /* ElementData.cpp */,
    2933929344                                B5B7A16E17C1048000E4AA0A /* ElementData.h */,
    29340                                 7CDA7919250E8C92007D1B36 /* ElementDOMParsing.idl */,
    2934129345                                2D2BEB2F2234A334005544CA /* ElementIdentifier.h */,
    2934229346                                E4AE7C1517D1BB950009FB31 /* ElementIterator.h */,
     
    2939629400                                0720B09E14D3323500642955 /* GenericEventQueue.cpp */,
    2939729401                                0720B09F14D3323500642955 /* GenericEventQueue.h */,
     29402                                7C2D722E25083A3400539662 /* GlobalEventHandlers+PointerEvents.idl */,
    2939829403                                7C4189AB1B07C170000FA757 /* GlobalEventHandlers.idl */,
    29399                                 7C2D722E25083A3400539662 /* GlobalEventHandlersPointerEvents.idl */,
    2940029404                                E3BF19E622AF302A009C9926 /* HashChangeEvent.cpp */,
    2940129405                                2442BBF81194C9D300D49469 /* HashChangeEvent.h */,
  • trunk/Source/WebCore/accessibility/AccessibilityRenderObject.cpp

    r267363 r267449  
    3939#include "AccessibilityTable.h"
    4040#include "CachedImage.h"
     41#include "DocumentSVG.h"
    4142#include "Editing.h"
    4243#include "Editor.h"
     
    31953196        return nullptr;
    31963197   
    3197     auto rootElement = SVGDocument::rootElement(*document);
     3198    auto rootElement = DocumentSVG::rootElement(*document);
    31983199    if (!rootElement)
    31993200        return nullptr;
  • trunk/Source/WebCore/bindings/js/JSDocumentCustom.cpp

    r251425 r267449  
    2626#include "JSXMLDocument.h"
    2727#include "NodeTraversal.h"
    28 #include "SVGDocument.h"
    2928#include <JavaScriptCore/HeapAnalyzer.h>
    30 
    3129
    3230namespace WebCore {
  • trunk/Source/WebCore/bindings/js/JSXMLDocumentCustom.cpp

    r251425 r267449  
    2929#include "JSDOMWindow.h"
    3030#include "JSDocumentCustom.h"
    31 #include "JSSVGDocument.h"
    3231#include "NodeTraversal.h"
    3332
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp

    r267312 r267449  
    6666#include "JSMediaDevices.h"
    6767#include "JSNode.h"
    68 #include "JSSVGDocument.h"
    6968#include "JSSVGPoint.h"
    7069#include "JSTestCallbackFunction.h"
     
    83568355    UNUSED_PARAM(callFrame);
    83578356    auto& impl = castedThis->wrapped();
    8358     RELEASE_AND_RETURN(throwScope, JSValue::encode(toJS<IDLInterface<SVGDocument>>(*lexicalGlobalObject, *castedThis->globalObject(), throwScope, BindingSecurity::checkSecurityForNode(*lexicalGlobalObject, impl.getSVGDocument()))));
     8357    RELEASE_AND_RETURN(throwScope, JSValue::encode(toJS<IDLInterface<Document>>(*lexicalGlobalObject, *castedThis->globalObject(), throwScope, BindingSecurity::checkSecurityForNode(*lexicalGlobalObject, impl.getSVGDocument()))));
    83598358}
    83608359
  • trunk/Source/WebCore/bindings/scripts/test/TestObj.idl

    r267312 r267449  
    348348
    349349    [CheckSecurityForNode] readonly attribute Document contentDocument;
    350     [CheckSecurityForNode, MayThrowException] SVGDocument getSVGDocument();
     350    [CheckSecurityForNode, MayThrowException] Document getSVGDocument();
    351351
    352352    undefined convert1(TestNode value);
  • trunk/Source/WebCore/css/DOMCSSNamespace+CSSPainting.idl

    r267448 r267449  
    2424*/
    2525
     26// https://drafts.css-houdini.org/css-paint-api-1/#paint-worklet
    2627[
    2728    EnabledAtRuntime=CSSPaintingAPI,
  • trunk/Source/WebCore/css/DOMCSSNamespace+CSSPropertiesandValues.idl

    r267448 r267449  
    2424*/
    2525
     26// https://drafts.css-houdini.org/css-properties-values-api-1/#registering-custom-properties
    2627[
    2728    EnabledBySetting=CSSCustomPropertiesAndValues,
  • trunk/Source/WebCore/dom/Document+StorageAccess.idl

    r267448 r267449  
    2424 */
    2525
     26// https://privacycg.github.io/storage-access/#the-document-object
    2627[
    2728    Conditional=RESOURCE_LOAD_STATISTICS,
  • trunk/Source/WebCore/dom/XMLDocument.idl

    r217235 r267449  
    2323 * THE POSSIBILITY OF SUCH DAMAGE.
    2424 */
     25
    2526[
    2627    CustomToJSObject,
    2728    LegacyWindowAlias=SVGDocument,
    28 ] interface XMLDocument : Document
    29 {
     29] interface XMLDocument : Document {
    3030};
  • trunk/Source/WebCore/html/HTMLFrameOwnerElement.h

    r266976 r267449  
    3030class Frame;
    3131class RenderWidget;
    32 class SVGDocument;
    3332
    3433class HTMLFrameOwnerElement : public HTMLElement {
  • trunk/Source/WebCore/loader/FrameLoader.cpp

    r266976 r267449  
    105105#include "ResourceLoadObserver.h"
    106106#include "ResourceRequest.h"
    107 #include "SVGDocument.h"
    108107#include "SVGLocatable.h"
    109108#include "SVGNames.h"
  • trunk/Source/WebCore/page/FrameView.cpp

    r267310 r267449  
    4141#include "DocumentLoader.h"
    4242#include "DocumentMarkerController.h"
     43#include "DocumentSVG.h"
    4344#include "Editor.h"
    4445#include "EventHandler.h"
     
    22292230        if (fragmentIdentifier.isEmpty())
    22302231            return false;
    2231         if (auto rootElement = SVGDocument::rootElement(document)) {
     2232        if (auto rootElement = DocumentSVG::rootElement(document)) {
    22322233            if (rootElement->scrollToFragment(fragmentIdentifier))
    22332234                return true;
     
    23242325
    23252326    if (is<SVGDocument>(document)) {
    2326         if (auto rootElement = SVGDocument::rootElement(document)) {
     2327        if (auto rootElement = DocumentSVG::rootElement(document)) {
    23272328            // We need to update the layout before resetScrollAnchor(), otherwise we
    23282329            // could really mess things up if resetting the anchor comes at a bad moment.
  • trunk/Source/WebCore/style/StyleAdjuster.cpp

    r267188 r267449  
    5151#include "RenderTheme.h"
    5252#include "RuntimeEnabledFeatures.h"
    53 #include "SVGDocument.h"
    5453#include "SVGElement.h"
    5554#include "SVGNames.h"
  • trunk/Source/WebCore/svg/Document+SVG.idl

    r267448 r267449  
    2020 */
    2121
     22// https://svgwg.org/svg2-draft/struct.html#InterfaceDocumentExtensions
    2223[
    23     ImplementedBy=SVGDocument
     24    ImplementedBy=DocumentSVG
    2425] partial interface Document {
    2526    readonly attribute SVGSVGElement? rootElement;
  • trunk/Source/WebCore/svg/DocumentSVG.cpp

    r267448 r267449  
    2424 */
    2525
    26 // https://drafts.csswg.org/cssom/#extensions-to-the-document-or-shadow-root-interface
    27 partial interface mixin DocumentOrShadowRoot {
    28     readonly attribute StyleSheetList styleSheets; // FIXME: Should be [SameObject].
    29 };
     26#include "config.h"
     27#include "DocumentSVG.h"
    3028
     29#include "Document.h"
     30#include "SVGSVGElement.h"
     31
     32namespace WebCore {
     33
     34RefPtr<SVGSVGElement> DocumentSVG::rootElement(const Document& document)
     35{
     36    auto* element = document.documentElement();
     37    if (!is<SVGSVGElement>(element))
     38        return nullptr;
     39    return downcast<SVGSVGElement>(element);
     40}
     41
     42}
  • trunk/Source/WebCore/svg/DocumentSVG.h

    r267448 r267449  
    2424 */
    2525
    26 // https://drafts.csswg.org/web-animations-1/#extensions-to-the-document-interface
    27 partial interface Document {
    28     readonly attribute DocumentTimeline timeline;
     26#pragma once
     27
     28#include <wtf/Forward.h>
     29
     30namespace WebCore {
     31
     32class Document;
     33class SVGSVGElement;
     34
     35class DocumentSVG final {
     36public:
     37    static RefPtr<SVGSVGElement> rootElement(const Document&);
    2938};
     39
     40}
     41
  • trunk/Source/WebCore/svg/SVGDocument.cpp

    r250153 r267449  
    2323#include "SVGDocument.h"
    2424
     25#include "DocumentSVG.h"
    2526#include "SVGSVGElement.h"
    2627#include "SVGViewSpec.h"
     
    3637}
    3738
    38 RefPtr<SVGSVGElement> SVGDocument::rootElement(const Document& document)
    39 {
    40     auto* element = document.documentElement();
    41     if (!is<SVGSVGElement>(element))
    42         return nullptr;
    43     return downcast<SVGSVGElement>(element);
    44 }
    45 
    4639bool SVGDocument::zoomAndPanEnabled() const
    4740{
    48     auto element = rootElement(*this);
     41    auto element = DocumentSVG::rootElement(*this);
    4942    if (!element)
    5043        return false;
     
    5447void SVGDocument::startPan(const FloatPoint& start)
    5548{
    56     auto element = rootElement(*this);
     49    auto element = DocumentSVG::rootElement(*this);
    5750    if (!element)
    5851        return;
     
    6255void SVGDocument::updatePan(const FloatPoint& position) const
    6356{
    64     auto element = rootElement(*this);
     57    auto element = DocumentSVG::rootElement(*this);
    6558    if (!element)
    6659        return;
  • trunk/Source/WebCore/svg/SVGDocument.h

    r250153 r267449  
    3333    static Ref<SVGDocument> create(Frame*, const URL&);
    3434
    35     static RefPtr<SVGSVGElement> rootElement(const Document&);
    36 
    3735    bool zoomAndPanEnabled() const;
    3836    void startPan(const FloatPoint& start);
  • trunk/Source/WebCore/svg/SVGTRefElement.cpp

    r246490 r267449  
    3131#include "RenderSVGResource.h"
    3232#include "ShadowRoot.h"
    33 #include "SVGDocument.h"
    3433#include "SVGDocumentExtensions.h"
    3534#include "SVGNames.h"
  • trunk/Source/WebCore/svg/graphics/SVGImage.cpp

    r265742 r267449  
    3434#include "DOMWindow.h"
    3535#include "DocumentLoader.h"
     36#include "DocumentSVG.h"
    3637#include "EditorClient.h"
    3738#include "ElementIterator.h"
     
    4950#include "RenderStyle.h"
    5051#include "RenderView.h"
    51 #include "SVGDocument.h"
    5252#include "SVGFEImageElement.h"
    5353#include "SVGForeignObjectElement.h"
     
    100100    if (!m_page)
    101101        return nullptr;
    102     return SVGDocument::rootElement(*m_page->mainFrame().document());
     102    return DocumentSVG::rootElement(*m_page->mainFrame().document());
    103103}
    104104
Note: See TracChangeset for help on using the changeset viewer.