Skip to content

Commit

Permalink
update chromium revision
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmood committed Apr 1, 2023
1 parent 4bbe74c commit e24573b
Show file tree
Hide file tree
Showing 16 changed files with 1,091 additions and 430 deletions.
2 changes: 1 addition & 1 deletion browser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ func TestBinarySize(t *testing.T) {
stat, err := os.Stat("tmp/translator")
g.E(err)

g.Lte(float64(stat.Size())/1024/1024, 10.5) // mb
g.Lte(float64(stat.Size())/1024/1024, 10.6) // mb
}

func TestBrowserCookies(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions lib/launcher/revision.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package launcher

// RevisionDefault for chromium
const RevisionDefault = 1101464
const RevisionDefault = 1124540

// RevisionPlaywright for arm linux
const RevisionPlaywright = 1048
const RevisionPlaywright = 1055
2 changes: 1 addition & 1 deletion lib/proto/accessibility.go
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ type AccessibilityGetPartialAXTree struct {
// ObjectID (optional) JavaScript object id of the node wrapper to get the partial accessibility tree for.
ObjectID RuntimeRemoteObjectID `json:"objectId,omitempty"`

// FetchRelatives (optional) Whether to fetch this nodes ancestors, siblings and children. Defaults to true.
// FetchRelatives (optional) Whether to fetch this node's ancestors, siblings and children. Defaults to true.
FetchRelatives bool `json:"fetchRelatives,omitempty"`
}

Expand Down
204 changes: 23 additions & 181 deletions lib/proto/audits.go
Original file line number Diff line number Diff line change
Expand Up @@ -534,9 +534,6 @@ const (
// AuditsAttributionReportingIssueTypePermissionPolicyDisabled enum const
AuditsAttributionReportingIssueTypePermissionPolicyDisabled AuditsAttributionReportingIssueType = "PermissionPolicyDisabled"

// AuditsAttributionReportingIssueTypePermissionPolicyNotDelegated enum const
AuditsAttributionReportingIssueTypePermissionPolicyNotDelegated AuditsAttributionReportingIssueType = "PermissionPolicyNotDelegated"

// AuditsAttributionReportingIssueTypeUntrustworthyReportingOrigin enum const
AuditsAttributionReportingIssueTypeUntrustworthyReportingOrigin AuditsAttributionReportingIssueType = "UntrustworthyReportingOrigin"

Expand All @@ -563,6 +560,21 @@ const (

// AuditsAttributionReportingIssueTypeTriggerIgnored enum const
AuditsAttributionReportingIssueTypeTriggerIgnored AuditsAttributionReportingIssueType = "TriggerIgnored"

// AuditsAttributionReportingIssueTypeOsSourceIgnored enum const
AuditsAttributionReportingIssueTypeOsSourceIgnored AuditsAttributionReportingIssueType = "OsSourceIgnored"

// AuditsAttributionReportingIssueTypeOsTriggerIgnored enum const
AuditsAttributionReportingIssueTypeOsTriggerIgnored AuditsAttributionReportingIssueType = "OsTriggerIgnored"

// AuditsAttributionReportingIssueTypeInvalidRegisterOsSourceHeader enum const
AuditsAttributionReportingIssueTypeInvalidRegisterOsSourceHeader AuditsAttributionReportingIssueType = "InvalidRegisterOsSourceHeader"

// AuditsAttributionReportingIssueTypeInvalidRegisterOsTriggerHeader enum const
AuditsAttributionReportingIssueTypeInvalidRegisterOsTriggerHeader AuditsAttributionReportingIssueType = "InvalidRegisterOsTriggerHeader"

// AuditsAttributionReportingIssueTypeWebAndOsHeaders enum const
AuditsAttributionReportingIssueTypeWebAndOsHeaders AuditsAttributionReportingIssueType = "WebAndOsHeaders"
)

// AuditsAttributionReportingIssueDetails Details for issues around "Attribution Reporting API" usage.
Expand Down Expand Up @@ -646,6 +658,9 @@ const (

// AuditsGenericIssueErrorTypeFormLabelForMatchesNonExistingIDError enum const
AuditsGenericIssueErrorTypeFormLabelForMatchesNonExistingIDError AuditsGenericIssueErrorType = "FormLabelForMatchesNonExistingIdError"

// AuditsGenericIssueErrorTypeFormInputHasWrongButWellIntendedAutocompleteValueError enum const
AuditsGenericIssueErrorTypeFormInputHasWrongButWellIntendedAutocompleteValueError AuditsGenericIssueErrorType = "FormInputHasWrongButWellIntendedAutocompleteValueError"
)

// AuditsGenericIssueDetails Depending on the concrete errorType, different properties are set.
Expand All @@ -659,183 +674,10 @@ type AuditsGenericIssueDetails struct {

// ViolatingNodeID (optional) ...
ViolatingNodeID DOMBackendNodeID `json:"violatingNodeId,omitempty"`
}

// AuditsDeprecationIssueType ...
type AuditsDeprecationIssueType string

const (
// AuditsDeprecationIssueTypeAuthorizationCoveredByWildcard enum const
AuditsDeprecationIssueTypeAuthorizationCoveredByWildcard AuditsDeprecationIssueType = "AuthorizationCoveredByWildcard"

// AuditsDeprecationIssueTypeCanRequestURLHTTPContainingNewline enum const
AuditsDeprecationIssueTypeCanRequestURLHTTPContainingNewline AuditsDeprecationIssueType = "CanRequestURLHTTPContainingNewline"

// AuditsDeprecationIssueTypeChromeLoadTimesConnectionInfo enum const
AuditsDeprecationIssueTypeChromeLoadTimesConnectionInfo AuditsDeprecationIssueType = "ChromeLoadTimesConnectionInfo"

// AuditsDeprecationIssueTypeChromeLoadTimesFirstPaintAfterLoadTime enum const
AuditsDeprecationIssueTypeChromeLoadTimesFirstPaintAfterLoadTime AuditsDeprecationIssueType = "ChromeLoadTimesFirstPaintAfterLoadTime"

// AuditsDeprecationIssueTypeChromeLoadTimesWasAlternateProtocolAvailable enum const
AuditsDeprecationIssueTypeChromeLoadTimesWasAlternateProtocolAvailable AuditsDeprecationIssueType = "ChromeLoadTimesWasAlternateProtocolAvailable"

// AuditsDeprecationIssueTypeCookieWithTruncatingChar enum const
AuditsDeprecationIssueTypeCookieWithTruncatingChar AuditsDeprecationIssueType = "CookieWithTruncatingChar"

// AuditsDeprecationIssueTypeCrossOriginAccessBasedOnDocumentDomain enum const
AuditsDeprecationIssueTypeCrossOriginAccessBasedOnDocumentDomain AuditsDeprecationIssueType = "CrossOriginAccessBasedOnDocumentDomain"

// AuditsDeprecationIssueTypeCrossOriginWindowAlert enum const
AuditsDeprecationIssueTypeCrossOriginWindowAlert AuditsDeprecationIssueType = "CrossOriginWindowAlert"

// AuditsDeprecationIssueTypeCrossOriginWindowConfirm enum const
AuditsDeprecationIssueTypeCrossOriginWindowConfirm AuditsDeprecationIssueType = "CrossOriginWindowConfirm"

// AuditsDeprecationIssueTypeCSSSelectorInternalMediaControlsOverlayCastButton enum const
AuditsDeprecationIssueTypeCSSSelectorInternalMediaControlsOverlayCastButton AuditsDeprecationIssueType = "CSSSelectorInternalMediaControlsOverlayCastButton"

// AuditsDeprecationIssueTypeDeprecationExample enum const
AuditsDeprecationIssueTypeDeprecationExample AuditsDeprecationIssueType = "DeprecationExample"

// AuditsDeprecationIssueTypeDocumentDomainSettingWithoutOriginAgentClusterHeader enum const
AuditsDeprecationIssueTypeDocumentDomainSettingWithoutOriginAgentClusterHeader AuditsDeprecationIssueType = "DocumentDomainSettingWithoutOriginAgentClusterHeader"

// AuditsDeprecationIssueTypeEventPath enum const
AuditsDeprecationIssueTypeEventPath AuditsDeprecationIssueType = "EventPath"

// AuditsDeprecationIssueTypeExpectCTHeader enum const
AuditsDeprecationIssueTypeExpectCTHeader AuditsDeprecationIssueType = "ExpectCTHeader"

// AuditsDeprecationIssueTypeGeolocationInsecureOrigin enum const
AuditsDeprecationIssueTypeGeolocationInsecureOrigin AuditsDeprecationIssueType = "GeolocationInsecureOrigin"

// AuditsDeprecationIssueTypeGeolocationInsecureOriginDeprecatedNotRemoved enum const
AuditsDeprecationIssueTypeGeolocationInsecureOriginDeprecatedNotRemoved AuditsDeprecationIssueType = "GeolocationInsecureOriginDeprecatedNotRemoved"

// AuditsDeprecationIssueTypeGetUserMediaInsecureOrigin enum const
AuditsDeprecationIssueTypeGetUserMediaInsecureOrigin AuditsDeprecationIssueType = "GetUserMediaInsecureOrigin"

// AuditsDeprecationIssueTypeHostCandidateAttributeGetter enum const
AuditsDeprecationIssueTypeHostCandidateAttributeGetter AuditsDeprecationIssueType = "HostCandidateAttributeGetter"

// AuditsDeprecationIssueTypeIdentityInCanMakePaymentEvent enum const
AuditsDeprecationIssueTypeIdentityInCanMakePaymentEvent AuditsDeprecationIssueType = "IdentityInCanMakePaymentEvent"

// AuditsDeprecationIssueTypeInsecurePrivateNetworkSubresourceRequest enum const
AuditsDeprecationIssueTypeInsecurePrivateNetworkSubresourceRequest AuditsDeprecationIssueType = "InsecurePrivateNetworkSubresourceRequest"

// AuditsDeprecationIssueTypeLocalCSSFileExtensionRejected enum const
AuditsDeprecationIssueTypeLocalCSSFileExtensionRejected AuditsDeprecationIssueType = "LocalCSSFileExtensionRejected"

// AuditsDeprecationIssueTypeMediaSourceAbortRemove enum const
AuditsDeprecationIssueTypeMediaSourceAbortRemove AuditsDeprecationIssueType = "MediaSourceAbortRemove"

// AuditsDeprecationIssueTypeMediaSourceDurationTruncatingBuffered enum const
AuditsDeprecationIssueTypeMediaSourceDurationTruncatingBuffered AuditsDeprecationIssueType = "MediaSourceDurationTruncatingBuffered"

// AuditsDeprecationIssueTypeNoSysexWebMIDIWithoutPermission enum const
AuditsDeprecationIssueTypeNoSysexWebMIDIWithoutPermission AuditsDeprecationIssueType = "NoSysexWebMIDIWithoutPermission"

// AuditsDeprecationIssueTypeNotificationInsecureOrigin enum const
AuditsDeprecationIssueTypeNotificationInsecureOrigin AuditsDeprecationIssueType = "NotificationInsecureOrigin"

// AuditsDeprecationIssueTypeNotificationPermissionRequestedIframe enum const
AuditsDeprecationIssueTypeNotificationPermissionRequestedIframe AuditsDeprecationIssueType = "NotificationPermissionRequestedIframe"

// AuditsDeprecationIssueTypeObsoleteCreateImageBitmapImageOrientationNone enum const
AuditsDeprecationIssueTypeObsoleteCreateImageBitmapImageOrientationNone AuditsDeprecationIssueType = "ObsoleteCreateImageBitmapImageOrientationNone"

// AuditsDeprecationIssueTypeObsoleteWebRtcCipherSuite enum const
AuditsDeprecationIssueTypeObsoleteWebRtcCipherSuite AuditsDeprecationIssueType = "ObsoleteWebRtcCipherSuite"

// AuditsDeprecationIssueTypeOpenWebDatabaseInsecureContext enum const
AuditsDeprecationIssueTypeOpenWebDatabaseInsecureContext AuditsDeprecationIssueType = "OpenWebDatabaseInsecureContext"

// AuditsDeprecationIssueTypeOverflowVisibleOnReplacedElement enum const
AuditsDeprecationIssueTypeOverflowVisibleOnReplacedElement AuditsDeprecationIssueType = "OverflowVisibleOnReplacedElement"

// AuditsDeprecationIssueTypePaymentInstruments enum const
AuditsDeprecationIssueTypePaymentInstruments AuditsDeprecationIssueType = "PaymentInstruments"

// AuditsDeprecationIssueTypePaymentRequestCSPViolation enum const
AuditsDeprecationIssueTypePaymentRequestCSPViolation AuditsDeprecationIssueType = "PaymentRequestCSPViolation"

// AuditsDeprecationIssueTypePersistentQuotaType enum const
AuditsDeprecationIssueTypePersistentQuotaType AuditsDeprecationIssueType = "PersistentQuotaType"

// AuditsDeprecationIssueTypePictureSourceSrc enum const
AuditsDeprecationIssueTypePictureSourceSrc AuditsDeprecationIssueType = "PictureSourceSrc"

// AuditsDeprecationIssueTypePrefixedCancelAnimationFrame enum const
AuditsDeprecationIssueTypePrefixedCancelAnimationFrame AuditsDeprecationIssueType = "PrefixedCancelAnimationFrame"

// AuditsDeprecationIssueTypePrefixedRequestAnimationFrame enum const
AuditsDeprecationIssueTypePrefixedRequestAnimationFrame AuditsDeprecationIssueType = "PrefixedRequestAnimationFrame"

// AuditsDeprecationIssueTypePrefixedStorageInfo enum const
AuditsDeprecationIssueTypePrefixedStorageInfo AuditsDeprecationIssueType = "PrefixedStorageInfo"

// AuditsDeprecationIssueTypePrefixedVideoDisplayingFullscreen enum const
AuditsDeprecationIssueTypePrefixedVideoDisplayingFullscreen AuditsDeprecationIssueType = "PrefixedVideoDisplayingFullscreen"

// AuditsDeprecationIssueTypePrefixedVideoEnterFullscreen enum const
AuditsDeprecationIssueTypePrefixedVideoEnterFullscreen AuditsDeprecationIssueType = "PrefixedVideoEnterFullscreen"

// AuditsDeprecationIssueTypePrefixedVideoEnterFullScreen enum const
AuditsDeprecationIssueTypePrefixedVideoEnterFullScreen AuditsDeprecationIssueType = "PrefixedVideoEnterFullScreen"

// AuditsDeprecationIssueTypePrefixedVideoExitFullscreen enum const
AuditsDeprecationIssueTypePrefixedVideoExitFullscreen AuditsDeprecationIssueType = "PrefixedVideoExitFullscreen"

// AuditsDeprecationIssueTypePrefixedVideoExitFullScreen enum const
AuditsDeprecationIssueTypePrefixedVideoExitFullScreen AuditsDeprecationIssueType = "PrefixedVideoExitFullScreen"

// AuditsDeprecationIssueTypePrefixedVideoSupportsFullscreen enum const
AuditsDeprecationIssueTypePrefixedVideoSupportsFullscreen AuditsDeprecationIssueType = "PrefixedVideoSupportsFullscreen"

// AuditsDeprecationIssueTypePrivacySandboxExtensionsAPI enum const
AuditsDeprecationIssueTypePrivacySandboxExtensionsAPI AuditsDeprecationIssueType = "PrivacySandboxExtensionsAPI"

// AuditsDeprecationIssueTypeRangeExpand enum const
AuditsDeprecationIssueTypeRangeExpand AuditsDeprecationIssueType = "RangeExpand"

// AuditsDeprecationIssueTypeRequestedSubresourceWithEmbeddedCredentials enum const
AuditsDeprecationIssueTypeRequestedSubresourceWithEmbeddedCredentials AuditsDeprecationIssueType = "RequestedSubresourceWithEmbeddedCredentials"

// AuditsDeprecationIssueTypeRTCConstraintEnableDtlsSrtpFalse enum const
AuditsDeprecationIssueTypeRTCConstraintEnableDtlsSrtpFalse AuditsDeprecationIssueType = "RTCConstraintEnableDtlsSrtpFalse"

// AuditsDeprecationIssueTypeRTCConstraintEnableDtlsSrtpTrue enum const
AuditsDeprecationIssueTypeRTCConstraintEnableDtlsSrtpTrue AuditsDeprecationIssueType = "RTCConstraintEnableDtlsSrtpTrue"

// AuditsDeprecationIssueTypeRTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics enum const
AuditsDeprecationIssueTypeRTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics AuditsDeprecationIssueType = "RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics"

// AuditsDeprecationIssueTypeRTCPeerConnectionSdpSemanticsPlanB enum const
AuditsDeprecationIssueTypeRTCPeerConnectionSdpSemanticsPlanB AuditsDeprecationIssueType = "RTCPeerConnectionSdpSemanticsPlanB"

// AuditsDeprecationIssueTypeRtcpMuxPolicyNegotiate enum const
AuditsDeprecationIssueTypeRtcpMuxPolicyNegotiate AuditsDeprecationIssueType = "RtcpMuxPolicyNegotiate"

// AuditsDeprecationIssueTypeSharedArrayBufferConstructedWithoutIsolation enum const
AuditsDeprecationIssueTypeSharedArrayBufferConstructedWithoutIsolation AuditsDeprecationIssueType = "SharedArrayBufferConstructedWithoutIsolation"

// AuditsDeprecationIssueTypeTextToSpeechDisallowedByAutoplay enum const
AuditsDeprecationIssueTypeTextToSpeechDisallowedByAutoplay AuditsDeprecationIssueType = "TextToSpeech_DisallowedByAutoplay"

// AuditsDeprecationIssueTypeV8SharedArrayBufferConstructedInExtensionWithoutIsolation enum const
AuditsDeprecationIssueTypeV8SharedArrayBufferConstructedInExtensionWithoutIsolation AuditsDeprecationIssueType = "V8SharedArrayBufferConstructedInExtensionWithoutIsolation"

// AuditsDeprecationIssueTypeXHRJSONEncodingDetection enum const
AuditsDeprecationIssueTypeXHRJSONEncodingDetection AuditsDeprecationIssueType = "XHRJSONEncodingDetection"

// AuditsDeprecationIssueTypeXMLHTTPRequestSynchronousInNonWorkerOutsideBeforeUnload enum const
AuditsDeprecationIssueTypeXMLHTTPRequestSynchronousInNonWorkerOutsideBeforeUnload AuditsDeprecationIssueType = "XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload"

// AuditsDeprecationIssueTypeXRSupportsSession enum const
AuditsDeprecationIssueTypeXRSupportsSession AuditsDeprecationIssueType = "XRSupportsSession"
)
// ViolatingNodeAttribute (optional) ...
ViolatingNodeAttribute string `json:"violatingNodeAttribute,omitempty"`
}

// AuditsDeprecationIssueDetails This issue tracks information needed to print a deprecation message.
// https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/third_party/blink/renderer/core/frame/deprecation/README.md
Expand All @@ -847,8 +689,8 @@ type AuditsDeprecationIssueDetails struct {
// SourceCodeLocation ...
SourceCodeLocation *AuditsSourceCodeLocation `json:"sourceCodeLocation"`

// Type ...
Type AuditsDeprecationIssueType `json:"type"`
// Type One of the deprecation names from third_party/blink/renderer/core/frame/deprecation/deprecation.json5
Type string `json:"type"`
}

// AuditsClientHintIssueReason ...
Expand Down
38 changes: 34 additions & 4 deletions lib/proto/css.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ type CSSCSSRule struct {
// SelectorList Rule selector data.
SelectorList *CSSSelectorList `json:"selectorList"`

// NestingSelectors (experimental) (optional) Array of selectors from ancestor style rules, sorted by distance from the current rule.
NestingSelectors []string `json:"nestingSelectors,omitempty"`

// Origin Parent stylesheet's origin.
Origin CSSStyleSheetOrigin `json:"origin"`

Expand Down Expand Up @@ -525,6 +528,30 @@ type CSSFontFace struct {
FontVariationAxes []*CSSFontVariationAxis `json:"fontVariationAxes,omitempty"`
}

// CSSCSSTryRule CSS try rule representation.
type CSSCSSTryRule struct {

// StyleSheetID (optional) The css style sheet identifier (absent for user agent stylesheet and user-specified
// stylesheet rules) this rule came from.
StyleSheetID CSSStyleSheetID `json:"styleSheetId,omitempty"`

// Origin Parent stylesheet's origin.
Origin CSSStyleSheetOrigin `json:"origin"`

// Style (optional) Associated style declaration.
Style *CSSCSSStyle `json:"style,omitempty"`
}

// CSSCSSPositionFallbackRule CSS position-fallback rule representation.
type CSSCSSPositionFallbackRule struct {

// Name ...
Name *CSSValue `json:"name"`

// TryRules List of keyframes.
TryRules []*CSSCSSTryRule `json:"tryRules"`
}

// CSSCSSKeyframesRule CSS keyframes rule representation.
type CSSCSSKeyframesRule struct {

Expand Down Expand Up @@ -809,6 +836,9 @@ type CSSGetMatchedStylesForNodeResult struct {
// CSSKeyframesRules (optional) A list of CSS keyframed animations matching this node.
CSSKeyframesRules []*CSSCSSKeyframesRule `json:"cssKeyframesRules,omitempty"`

// CSSPositionFallbackRules (optional) A list of CSS position fallbacks matching this node.
CSSPositionFallbackRules []*CSSCSSPositionFallbackRule `json:"cssPositionFallbackRules,omitempty"`

// ParentLayoutNodeID (experimental) (optional) Id of the first parent element that does not have display: contents.
ParentLayoutNodeID DOMNodeID `json:"parentLayoutNodeId,omitempty"`
}
Expand Down Expand Up @@ -942,7 +972,7 @@ func (m CSSTakeComputedStyleUpdates) Call(c Client) (*CSSTakeComputedStyleUpdate
// CSSTakeComputedStyleUpdatesResult (experimental) ...
type CSSTakeComputedStyleUpdatesResult struct {

// NodeIds The list of node Ids that have their tracked computed styles updated
// NodeIds The list of node Ids that have their tracked computed styles updated.
NodeIds []DOMNodeID `json:"nodeIds"`
}

Expand Down Expand Up @@ -1206,7 +1236,7 @@ func (m CSSStartRuleUsageTracking) Call(c Client) error {
}

// CSSStopRuleUsageTracking Stop tracking rule usage and return the list of rules that were used since last call to
// `takeCoverageDelta` (or since start of coverage instrumentation)
// `takeCoverageDelta` (or since start of coverage instrumentation).
type CSSStopRuleUsageTracking struct {
}

Expand All @@ -1227,7 +1257,7 @@ type CSSStopRuleUsageTrackingResult struct {
}

// CSSTakeCoverageDelta Obtain list of rules that became used since last call to this method (or since start of coverage
// instrumentation)
// instrumentation).
type CSSTakeCoverageDelta struct {
}

Expand Down Expand Up @@ -1266,7 +1296,7 @@ func (m CSSSetLocalFontsEnabled) Call(c Client) error {
}

// CSSFontsUpdated Fires whenever a web font is updated. A non-empty font parameter indicates a successfully loaded
// web font
// web font.
type CSSFontsUpdated struct {

// Font (optional) The web font that has loaded.
Expand Down
6 changes: 6 additions & 0 deletions lib/proto/debugger.go
Original file line number Diff line number Diff line change
Expand Up @@ -975,6 +975,9 @@ const (

// DebuggerSetScriptSourceResultStatusBlockedByActiveFunction enum const
DebuggerSetScriptSourceResultStatusBlockedByActiveFunction DebuggerSetScriptSourceResultStatus = "BlockedByActiveFunction"

// DebuggerSetScriptSourceResultStatusBlockedByTopLevelEsModuleChange enum const
DebuggerSetScriptSourceResultStatusBlockedByTopLevelEsModuleChange DebuggerSetScriptSourceResultStatus = "BlockedByTopLevelEsModuleChange"
)

// DebuggerSetScriptSourceResult ...
Expand Down Expand Up @@ -1142,6 +1145,9 @@ const (

// DebuggerPausedReasonXHR enum const
DebuggerPausedReasonXHR DebuggerPausedReason = "XHR"

// DebuggerPausedReasonStep enum const
DebuggerPausedReasonStep DebuggerPausedReason = "step"
)

// DebuggerPaused Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
Expand Down

0 comments on commit e24573b

Please sign in to comment.