devtools-protocol 0.0.996285 → 0.0.997803

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1550,7 +1550,6 @@
1550
1550
  "type": "string",
1551
1551
  "enum": [
1552
1552
  "AuthorizationCoveredByWildcard",
1553
- "BatteryStatusInsecureOrigin",
1554
1553
  "CanRequestURLHTTPContainingNewline",
1555
1554
  "ChromeLoadTimesConnectionInfo",
1556
1555
  "ChromeLoadTimesFirstPaintAfterLoadTime",
@@ -1605,7 +1604,6 @@
1605
1604
  "SelectionAddRangeIntersect",
1606
1605
  "SharedArrayBufferConstructedWithoutIsolation",
1607
1606
  "TextToSpeech_DisallowedByAutoplay",
1608
- "Untranslated",
1609
1607
  "V8SharedArrayBufferConstructedInExtensionWithoutIsolation",
1610
1608
  "WebCodecsVideoFrameDefaultTimestamp",
1611
1609
  "XHRJSONEncodingDetection",
@@ -1615,7 +1613,7 @@
1615
1613
  },
1616
1614
  {
1617
1615
  "id": "DeprecationIssueDetails",
1618
- "description": "This issue tracks information needed to print a deprecation message.\nThe formatting is inherited from the old console.log version, see more at:\nhttps://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/deprecation.cc\nTODO(crbug.com/1264960): Re-work format to add i18n support per:\nhttps://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/public/devtools_protocol/README.md",
1616
+ "description": "This issue tracks information needed to print a deprecation message.\nhttps://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/third_party/blink/renderer/core/frame/deprecation/README.md",
1619
1617
  "type": "object",
1620
1618
  "properties": [
1621
1619
  {
@@ -1627,20 +1625,6 @@
1627
1625
  "name": "sourceCodeLocation",
1628
1626
  "$ref": "SourceCodeLocation"
1629
1627
  },
1630
- {
1631
- "name": "message",
1632
- "description": "The content of an untranslated deprecation issue,\ne.g. \"window.inefficientLegacyStorageMethod will be removed in M97,\naround January 2022. Please use Web Storage or Indexed Database\ninstead. This standard was abandoned in January, 1970. See\nhttps://www.chromestatus.com/feature/5684870116278272 for more details.\"",
1633
- "deprecated": true,
1634
- "optional": true,
1635
- "type": "string"
1636
- },
1637
- {
1638
- "name": "deprecationType",
1639
- "description": "The id of an untranslated deprecation issue e.g. PrefixedStorageInfo.",
1640
- "deprecated": true,
1641
- "optional": true,
1642
- "type": "string"
1643
- },
1644
1628
  {
1645
1629
  "name": "type",
1646
1630
  "$ref": "DeprecationIssueType"
@@ -15724,6 +15708,12 @@
15724
15708
  "description": "The fantasy font-family.",
15725
15709
  "optional": true,
15726
15710
  "type": "string"
15711
+ },
15712
+ {
15713
+ "name": "math",
15714
+ "description": "The math font-family.",
15715
+ "optional": true,
15716
+ "type": "string"
15727
15717
  }
15728
15718
  ]
15729
15719
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.996285",
3
+ "version": "0.0.997803",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -744,7 +744,6 @@ experimental domain Audits
744
744
  type DeprecationIssueType extends string
745
745
  enum
746
746
  AuthorizationCoveredByWildcard
747
- BatteryStatusInsecureOrigin
748
747
  CanRequestURLHTTPContainingNewline
749
748
  ChromeLoadTimesConnectionInfo
750
749
  ChromeLoadTimesFirstPaintAfterLoadTime
@@ -799,7 +798,6 @@ experimental domain Audits
799
798
  SelectionAddRangeIntersect
800
799
  SharedArrayBufferConstructedWithoutIsolation
801
800
  TextToSpeech_DisallowedByAutoplay
802
- Untranslated
803
801
  V8SharedArrayBufferConstructedInExtensionWithoutIsolation
804
802
  WebCodecsVideoFrameDefaultTimestamp
805
803
  XHRJSONEncodingDetection
@@ -807,22 +805,11 @@ experimental domain Audits
807
805
  XRSupportsSession
808
806
 
809
807
  # This issue tracks information needed to print a deprecation message.
810
- # The formatting is inherited from the old console.log version, see more at:
811
- # https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/deprecation.cc
812
- # TODO(crbug.com/1264960): Re-work format to add i18n support per:
813
- # https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/public/devtools_protocol/README.md
808
+ # https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/third_party/blink/renderer/core/frame/deprecation/README.md
814
809
  type DeprecationIssueDetails extends object
815
810
  properties
816
811
  optional AffectedFrame affectedFrame
817
812
  SourceCodeLocation sourceCodeLocation
818
- # The content of an untranslated deprecation issue,
819
- # e.g. "window.inefficientLegacyStorageMethod will be removed in M97,
820
- # around January 2022. Please use Web Storage or Indexed Database
821
- # instead. This standard was abandoned in January, 1970. See
822
- # https://www.chromestatus.com/feature/5684870116278272 for more details."
823
- deprecated optional string message
824
- # The id of an untranslated deprecation issue e.g. PrefixedStorageInfo.
825
- deprecated optional string deprecationType
826
813
  DeprecationIssueType type
827
814
 
828
815
  type ClientHintIssueReason extends string
@@ -7357,6 +7344,8 @@ domain Page
7357
7344
  optional string cursive
7358
7345
  # The fantasy font-family.
7359
7346
  optional string fantasy
7347
+ # The math font-family.
7348
+ optional string math
7360
7349
 
7361
7350
  # Font families collection for a script.
7362
7351
  experimental type ScriptFontFamilies extends object
@@ -3376,30 +3376,15 @@ export namespace Protocol {
3376
3376
  frameId?: Page.FrameId;
3377
3377
  }
3378
3378
 
3379
- export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'BatteryStatusInsecureOrigin' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'CustomCursorIntersectsViewport' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogCpuOveruseDetection' | 'LegacyConstraintGoogIPv6' | 'LegacyConstraintGoogScreencastMinBitrate' | 'LegacyConstraintGoogSuspendBelowMinBitrate' | 'LocalCSSFileExtensionRejected' | 'MediaElementAudioSourceNode' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'PaymentRequestBasicCard' | 'PaymentRequestShowWithoutGesture' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionLegacyCreateWithMediaConstraints' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'RTPDataChannel' | 'SelectionAddRangeIntersect' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'Untranslated' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'WebCodecsVideoFrameDefaultTimestamp' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
3379
+ export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'CustomCursorIntersectsViewport' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogCpuOveruseDetection' | 'LegacyConstraintGoogIPv6' | 'LegacyConstraintGoogScreencastMinBitrate' | 'LegacyConstraintGoogSuspendBelowMinBitrate' | 'LocalCSSFileExtensionRejected' | 'MediaElementAudioSourceNode' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'PaymentRequestBasicCard' | 'PaymentRequestShowWithoutGesture' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionLegacyCreateWithMediaConstraints' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'RTPDataChannel' | 'SelectionAddRangeIntersect' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'WebCodecsVideoFrameDefaultTimestamp' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
3380
3380
 
3381
3381
  /**
3382
3382
  * This issue tracks information needed to print a deprecation message.
3383
- * The formatting is inherited from the old console.log version, see more at:
3384
- * https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/deprecation.cc
3385
- * TODO(crbug.com/1264960): Re-work format to add i18n support per:
3386
- * https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/public/devtools_protocol/README.md
3383
+ * https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/third_party/blink/renderer/core/frame/deprecation/README.md
3387
3384
  */
3388
3385
  export interface DeprecationIssueDetails {
3389
3386
  affectedFrame?: AffectedFrame;
3390
3387
  sourceCodeLocation: SourceCodeLocation;
3391
- /**
3392
- * The content of an untranslated deprecation issue,
3393
- * e.g. "window.inefficientLegacyStorageMethod will be removed in M97,
3394
- * around January 2022. Please use Web Storage or Indexed Database
3395
- * instead. This standard was abandoned in January, 1970. See
3396
- * https://www.chromestatus.com/feature/5684870116278272 for more details."
3397
- */
3398
- message?: string;
3399
- /**
3400
- * The id of an untranslated deprecation issue e.g. PrefixedStorageInfo.
3401
- */
3402
- deprecationType?: string;
3403
3388
  type: DeprecationIssueType;
3404
3389
  }
3405
3390
 
@@ -12493,6 +12478,10 @@ export namespace Protocol {
12493
12478
  * The fantasy font-family.
12494
12479
  */
12495
12480
  fantasy?: string;
12481
+ /**
12482
+ * The math font-family.
12483
+ */
12484
+ math?: string;
12496
12485
  }
12497
12486
 
12498
12487
  /**