diff --git a/cdproto.go b/cdproto.go index 142c3eb..3c6b90a 100644 --- a/cdproto.go +++ b/cdproto.go @@ -238,6 +238,7 @@ const ( CommandDOMGetFrameOwner = dom.CommandGetFrameOwner CommandDOMGetContainerForNode = dom.CommandGetContainerForNode CommandDOMGetQueryingDescendantsForContainer = dom.CommandGetQueryingDescendantsForContainer + CommandDOMGetAnchorElement = dom.CommandGetAnchorElement EventDOMAttributeModified = "DOM.attributeModified" EventDOMAttributeRemoved = "DOM.attributeRemoved" EventDOMCharacterDataModified = "DOM.characterDataModified" @@ -1314,6 +1315,9 @@ func UnmarshalMessage(msg *Message) (interface{}, error) { case CommandDOMGetQueryingDescendantsForContainer: v = new(dom.GetQueryingDescendantsForContainerReturns) + case CommandDOMGetAnchorElement: + v = new(dom.GetAnchorElementReturns) + case EventDOMAttributeModified: v = new(dom.EventAttributeModified) diff --git a/dom/dom.go b/dom/dom.go index 4a2413b..51ca59f 100644 --- a/dom/dom.go +++ b/dom/dom.go @@ -1896,6 +1896,58 @@ func (p *GetQueryingDescendantsForContainerParams) Do(ctx context.Context) (node return res.NodeIDs, nil } +// GetAnchorElementParams returns the target anchor element of the given +// anchor query according to +// https://www.w3.org/TR/css-anchor-position-1/#target. +type GetAnchorElementParams struct { + NodeID cdp.NodeID `json:"nodeId"` // Id of the positioned element from which to find the anchor. + AnchorSpecifier string `json:"anchorSpecifier,omitempty"` // An optional anchor specifier, as defined in https://www.w3.org/TR/css-anchor-position-1/#anchor-specifier. If not provided, it will return the implicit anchor element for the given positioned element. +} + +// GetAnchorElement returns the target anchor element of the given anchor +// query according to https://www.w3.org/TR/css-anchor-position-1/#target. +// +// See: https://chromedevtools.github.io/devtools-protocol/tot/DOM#method-getAnchorElement +// +// parameters: +// +// nodeID - Id of the positioned element from which to find the anchor. +func GetAnchorElement(nodeID cdp.NodeID) *GetAnchorElementParams { + return &GetAnchorElementParams{ + NodeID: nodeID, + } +} + +// WithAnchorSpecifier an optional anchor specifier, as defined in +// https://www.w3.org/TR/css-anchor-position-1/#anchor-specifier. If not +// provided, it will return the implicit anchor element for the given positioned +// element. +func (p GetAnchorElementParams) WithAnchorSpecifier(anchorSpecifier string) *GetAnchorElementParams { + p.AnchorSpecifier = anchorSpecifier + return &p +} + +// GetAnchorElementReturns return values. +type GetAnchorElementReturns struct { + NodeID cdp.NodeID `json:"nodeId,omitempty"` // The anchor element of the given anchor query. +} + +// Do executes DOM.getAnchorElement against the provided context. +// +// returns: +// +// nodeID - The anchor element of the given anchor query. +func (p *GetAnchorElementParams) Do(ctx context.Context) (nodeID cdp.NodeID, err error) { + // execute + var res GetAnchorElementReturns + err = cdp.Execute(ctx, CommandGetAnchorElement, p, &res) + if err != nil { + return 0, err + } + + return res.NodeID, nil +} + // Command names. const ( CommandCollectClassNamesFromSubtree = "DOM.collectClassNamesFromSubtree" @@ -1944,4 +1996,5 @@ const ( CommandGetFrameOwner = "DOM.getFrameOwner" CommandGetContainerForNode = "DOM.getContainerForNode" CommandGetQueryingDescendantsForContainer = "DOM.getQueryingDescendantsForContainer" + CommandGetAnchorElement = "DOM.getAnchorElement" ) diff --git a/dom/easyjson.go b/dom/easyjson.go index 8ef8c23..87d61d4 100644 --- a/dom/easyjson.go +++ b/dom/easyjson.go @@ -5336,7 +5336,147 @@ func (v *GetAttributesParams) UnmarshalJSON(data []byte) error { func (v *GetAttributesParams) UnmarshalEasyJSON(l *jlexer.Lexer) { easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom65(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom66(in *jlexer.Lexer, out *FocusParams) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom66(in *jlexer.Lexer, out *GetAnchorElementReturns) { + isTopLevel := in.IsStart() + if in.IsNull() { + if isTopLevel { + in.Consumed() + } + in.Skip() + return + } + in.Delim('{') + for !in.IsDelim('}') { + key := in.UnsafeFieldName(false) + in.WantColon() + if in.IsNull() { + in.Skip() + in.WantComma() + continue + } + switch key { + case "nodeId": + (out.NodeID).UnmarshalEasyJSON(in) + default: + in.SkipRecursive() + } + in.WantComma() + } + in.Delim('}') + if isTopLevel { + in.Consumed() + } +} +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom66(out *jwriter.Writer, in GetAnchorElementReturns) { + out.RawByte('{') + first := true + _ = first + if in.NodeID != 0 { + const prefix string = ",\"nodeId\":" + first = false + out.RawString(prefix[1:]) + out.Int64(int64(in.NodeID)) + } + out.RawByte('}') +} + +// MarshalJSON supports json.Marshaler interface +func (v GetAnchorElementReturns) MarshalJSON() ([]byte, error) { + w := jwriter.Writer{} + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom66(&w, v) + return w.Buffer.BuildBytes(), w.Error +} + +// MarshalEasyJSON supports easyjson.Marshaler interface +func (v GetAnchorElementReturns) MarshalEasyJSON(w *jwriter.Writer) { + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom66(w, v) +} + +// UnmarshalJSON supports json.Unmarshaler interface +func (v *GetAnchorElementReturns) UnmarshalJSON(data []byte) error { + r := jlexer.Lexer{Data: data} + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom66(&r, v) + return r.Error() +} + +// UnmarshalEasyJSON supports easyjson.Unmarshaler interface +func (v *GetAnchorElementReturns) UnmarshalEasyJSON(l *jlexer.Lexer) { + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom66(l, v) +} +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom67(in *jlexer.Lexer, out *GetAnchorElementParams) { + isTopLevel := in.IsStart() + if in.IsNull() { + if isTopLevel { + in.Consumed() + } + in.Skip() + return + } + in.Delim('{') + for !in.IsDelim('}') { + key := in.UnsafeFieldName(false) + in.WantColon() + if in.IsNull() { + in.Skip() + in.WantComma() + continue + } + switch key { + case "nodeId": + (out.NodeID).UnmarshalEasyJSON(in) + case "anchorSpecifier": + out.AnchorSpecifier = string(in.String()) + default: + in.SkipRecursive() + } + in.WantComma() + } + in.Delim('}') + if isTopLevel { + in.Consumed() + } +} +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom67(out *jwriter.Writer, in GetAnchorElementParams) { + out.RawByte('{') + first := true + _ = first + { + const prefix string = ",\"nodeId\":" + out.RawString(prefix[1:]) + out.Int64(int64(in.NodeID)) + } + if in.AnchorSpecifier != "" { + const prefix string = ",\"anchorSpecifier\":" + out.RawString(prefix) + out.String(string(in.AnchorSpecifier)) + } + out.RawByte('}') +} + +// MarshalJSON supports json.Marshaler interface +func (v GetAnchorElementParams) MarshalJSON() ([]byte, error) { + w := jwriter.Writer{} + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom67(&w, v) + return w.Buffer.BuildBytes(), w.Error +} + +// MarshalEasyJSON supports easyjson.Marshaler interface +func (v GetAnchorElementParams) MarshalEasyJSON(w *jwriter.Writer) { + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom67(w, v) +} + +// UnmarshalJSON supports json.Unmarshaler interface +func (v *GetAnchorElementParams) UnmarshalJSON(data []byte) error { + r := jlexer.Lexer{Data: data} + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom67(&r, v) + return r.Error() +} + +// UnmarshalEasyJSON supports easyjson.Unmarshaler interface +func (v *GetAnchorElementParams) UnmarshalEasyJSON(l *jlexer.Lexer) { + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom67(l, v) +} +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom68(in *jlexer.Lexer, out *FocusParams) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -5371,7 +5511,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom66(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom66(out *jwriter.Writer, in FocusParams) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom68(out *jwriter.Writer, in FocusParams) { out.RawByte('{') first := true _ = first @@ -5407,27 +5547,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom66(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v FocusParams) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom66(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom68(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v FocusParams) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom66(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom68(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *FocusParams) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom66(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom68(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *FocusParams) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom66(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom68(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom67(in *jlexer.Lexer, out *EventTopLayerElementsUpdated) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom69(in *jlexer.Lexer, out *EventTopLayerElementsUpdated) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -5456,7 +5596,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom67(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom67(out *jwriter.Writer, in EventTopLayerElementsUpdated) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom69(out *jwriter.Writer, in EventTopLayerElementsUpdated) { out.RawByte('{') first := true _ = first @@ -5466,27 +5606,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom67(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventTopLayerElementsUpdated) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom67(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom69(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventTopLayerElementsUpdated) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom67(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom69(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventTopLayerElementsUpdated) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom67(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom69(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventTopLayerElementsUpdated) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom67(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom69(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom68(in *jlexer.Lexer, out *EventShadowRootPushed) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom70(in *jlexer.Lexer, out *EventShadowRootPushed) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -5527,7 +5667,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom68(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom68(out *jwriter.Writer, in EventShadowRootPushed) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom70(out *jwriter.Writer, in EventShadowRootPushed) { out.RawByte('{') first := true _ = first @@ -5551,27 +5691,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom68(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventShadowRootPushed) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom68(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom70(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventShadowRootPushed) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom68(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom70(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventShadowRootPushed) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom68(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom70(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventShadowRootPushed) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom68(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom70(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom69(in *jlexer.Lexer, out *EventShadowRootPopped) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom71(in *jlexer.Lexer, out *EventShadowRootPopped) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -5604,7 +5744,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom69(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom69(out *jwriter.Writer, in EventShadowRootPopped) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom71(out *jwriter.Writer, in EventShadowRootPopped) { out.RawByte('{') first := true _ = first @@ -5624,27 +5764,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom69(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventShadowRootPopped) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom69(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom71(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventShadowRootPopped) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom69(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom71(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventShadowRootPopped) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom69(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom71(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventShadowRootPopped) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom69(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom71(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom70(in *jlexer.Lexer, out *EventSetChildNodes) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom72(in *jlexer.Lexer, out *EventSetChildNodes) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -5706,7 +5846,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom70(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom70(out *jwriter.Writer, in EventSetChildNodes) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom72(out *jwriter.Writer, in EventSetChildNodes) { out.RawByte('{') first := true _ = first @@ -5741,27 +5881,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom70(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventSetChildNodes) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom70(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom72(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventSetChildNodes) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom70(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom72(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventSetChildNodes) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom70(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom72(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventSetChildNodes) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom70(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom72(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom71(in *jlexer.Lexer, out *EventPseudoElementRemoved) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom73(in *jlexer.Lexer, out *EventPseudoElementRemoved) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -5794,7 +5934,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom71(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom71(out *jwriter.Writer, in EventPseudoElementRemoved) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom73(out *jwriter.Writer, in EventPseudoElementRemoved) { out.RawByte('{') first := true _ = first @@ -5814,27 +5954,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom71(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventPseudoElementRemoved) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom71(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom73(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventPseudoElementRemoved) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom71(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom73(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventPseudoElementRemoved) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom71(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom73(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventPseudoElementRemoved) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom71(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom73(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom72(in *jlexer.Lexer, out *EventPseudoElementAdded) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom74(in *jlexer.Lexer, out *EventPseudoElementAdded) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -5875,7 +6015,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom72(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom72(out *jwriter.Writer, in EventPseudoElementAdded) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom74(out *jwriter.Writer, in EventPseudoElementAdded) { out.RawByte('{') first := true _ = first @@ -5899,27 +6039,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom72(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventPseudoElementAdded) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom72(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom74(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventPseudoElementAdded) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom72(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom74(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventPseudoElementAdded) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom72(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom74(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventPseudoElementAdded) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom72(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom74(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom73(in *jlexer.Lexer, out *EventInlineStyleInvalidated) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom75(in *jlexer.Lexer, out *EventInlineStyleInvalidated) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -5971,7 +6111,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom73(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom73(out *jwriter.Writer, in EventInlineStyleInvalidated) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom75(out *jwriter.Writer, in EventInlineStyleInvalidated) { out.RawByte('{') first := true _ = first @@ -5997,27 +6137,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom73(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventInlineStyleInvalidated) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom73(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom75(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventInlineStyleInvalidated) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom73(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom75(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventInlineStyleInvalidated) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom73(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom75(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventInlineStyleInvalidated) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom73(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom75(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom74(in *jlexer.Lexer, out *EventDocumentUpdated) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom76(in *jlexer.Lexer, out *EventDocumentUpdated) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6046,7 +6186,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom74(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom74(out *jwriter.Writer, in EventDocumentUpdated) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom76(out *jwriter.Writer, in EventDocumentUpdated) { out.RawByte('{') first := true _ = first @@ -6056,27 +6196,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom74(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventDocumentUpdated) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom74(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom76(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventDocumentUpdated) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom74(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom76(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventDocumentUpdated) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom74(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom76(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventDocumentUpdated) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom74(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom76(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom75(in *jlexer.Lexer, out *EventDistributedNodesUpdated) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom77(in *jlexer.Lexer, out *EventDistributedNodesUpdated) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6138,7 +6278,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom75(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom75(out *jwriter.Writer, in EventDistributedNodesUpdated) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom77(out *jwriter.Writer, in EventDistributedNodesUpdated) { out.RawByte('{') first := true _ = first @@ -6173,27 +6313,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom75(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventDistributedNodesUpdated) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom75(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom77(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventDistributedNodesUpdated) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom75(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom77(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventDistributedNodesUpdated) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom75(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom77(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventDistributedNodesUpdated) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom75(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom77(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom76(in *jlexer.Lexer, out *EventChildNodeRemoved) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom78(in *jlexer.Lexer, out *EventChildNodeRemoved) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6226,7 +6366,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom76(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom76(out *jwriter.Writer, in EventChildNodeRemoved) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom78(out *jwriter.Writer, in EventChildNodeRemoved) { out.RawByte('{') first := true _ = first @@ -6246,27 +6386,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom76(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventChildNodeRemoved) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom76(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom78(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventChildNodeRemoved) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom76(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom78(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventChildNodeRemoved) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom76(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom78(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventChildNodeRemoved) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom76(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom78(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom77(in *jlexer.Lexer, out *EventChildNodeInserted) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom79(in *jlexer.Lexer, out *EventChildNodeInserted) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6309,7 +6449,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom77(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom77(out *jwriter.Writer, in EventChildNodeInserted) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom79(out *jwriter.Writer, in EventChildNodeInserted) { out.RawByte('{') first := true _ = first @@ -6338,27 +6478,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom77(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventChildNodeInserted) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom77(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom79(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventChildNodeInserted) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom77(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom79(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventChildNodeInserted) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom77(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom79(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventChildNodeInserted) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom77(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom79(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom78(in *jlexer.Lexer, out *EventChildNodeCountUpdated) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom80(in *jlexer.Lexer, out *EventChildNodeCountUpdated) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6391,7 +6531,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom78(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom78(out *jwriter.Writer, in EventChildNodeCountUpdated) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom80(out *jwriter.Writer, in EventChildNodeCountUpdated) { out.RawByte('{') first := true _ = first @@ -6411,27 +6551,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom78(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventChildNodeCountUpdated) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom78(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom80(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventChildNodeCountUpdated) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom78(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom80(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventChildNodeCountUpdated) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom78(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom80(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventChildNodeCountUpdated) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom78(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom80(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom79(in *jlexer.Lexer, out *EventCharacterDataModified) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom81(in *jlexer.Lexer, out *EventCharacterDataModified) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6464,7 +6604,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom79(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom79(out *jwriter.Writer, in EventCharacterDataModified) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom81(out *jwriter.Writer, in EventCharacterDataModified) { out.RawByte('{') first := true _ = first @@ -6484,27 +6624,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom79(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventCharacterDataModified) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom79(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom81(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventCharacterDataModified) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom79(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom81(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventCharacterDataModified) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom79(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom81(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventCharacterDataModified) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom79(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom81(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom80(in *jlexer.Lexer, out *EventAttributeRemoved) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom82(in *jlexer.Lexer, out *EventAttributeRemoved) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6537,7 +6677,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom80(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom80(out *jwriter.Writer, in EventAttributeRemoved) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom82(out *jwriter.Writer, in EventAttributeRemoved) { out.RawByte('{') first := true _ = first @@ -6557,27 +6697,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom80(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventAttributeRemoved) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom80(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom82(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventAttributeRemoved) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom80(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom82(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventAttributeRemoved) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom80(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom82(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventAttributeRemoved) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom80(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom82(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom81(in *jlexer.Lexer, out *EventAttributeModified) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom83(in *jlexer.Lexer, out *EventAttributeModified) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6612,7 +6752,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom81(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom81(out *jwriter.Writer, in EventAttributeModified) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom83(out *jwriter.Writer, in EventAttributeModified) { out.RawByte('{') first := true _ = first @@ -6637,27 +6777,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom81(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EventAttributeModified) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom81(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom83(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EventAttributeModified) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom81(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom83(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EventAttributeModified) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom81(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom83(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EventAttributeModified) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom81(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom83(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom82(in *jlexer.Lexer, out *EnableParams) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom84(in *jlexer.Lexer, out *EnableParams) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6688,7 +6828,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom82(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom82(out *jwriter.Writer, in EnableParams) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom84(out *jwriter.Writer, in EnableParams) { out.RawByte('{') first := true _ = first @@ -6704,27 +6844,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom82(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v EnableParams) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom82(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom84(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v EnableParams) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom82(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom84(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *EnableParams) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom82(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom84(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *EnableParams) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom82(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom84(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom83(in *jlexer.Lexer, out *DiscardSearchResultsParams) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom85(in *jlexer.Lexer, out *DiscardSearchResultsParams) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6755,7 +6895,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom83(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom83(out *jwriter.Writer, in DiscardSearchResultsParams) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom85(out *jwriter.Writer, in DiscardSearchResultsParams) { out.RawByte('{') first := true _ = first @@ -6770,27 +6910,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom83(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v DiscardSearchResultsParams) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom83(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom85(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v DiscardSearchResultsParams) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom83(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom85(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *DiscardSearchResultsParams) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom83(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom85(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *DiscardSearchResultsParams) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom83(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom85(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom84(in *jlexer.Lexer, out *DisableParams) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom86(in *jlexer.Lexer, out *DisableParams) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6819,7 +6959,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom84(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom84(out *jwriter.Writer, in DisableParams) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom86(out *jwriter.Writer, in DisableParams) { out.RawByte('{') first := true _ = first @@ -6829,27 +6969,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom84(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v DisableParams) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom84(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom86(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v DisableParams) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom84(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom86(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *DisableParams) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom84(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom86(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *DisableParams) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom84(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom86(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom85(in *jlexer.Lexer, out *DescribeNodeReturns) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom87(in *jlexer.Lexer, out *DescribeNodeReturns) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6888,7 +7028,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom85(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom85(out *jwriter.Writer, in DescribeNodeReturns) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom87(out *jwriter.Writer, in DescribeNodeReturns) { out.RawByte('{') first := true _ = first @@ -6904,27 +7044,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom85(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v DescribeNodeReturns) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom85(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom87(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v DescribeNodeReturns) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom85(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom87(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *DescribeNodeReturns) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom85(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom87(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *DescribeNodeReturns) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom85(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom87(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom86(in *jlexer.Lexer, out *DescribeNodeParams) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom88(in *jlexer.Lexer, out *DescribeNodeParams) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -6963,7 +7103,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom86(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom86(out *jwriter.Writer, in DescribeNodeParams) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom88(out *jwriter.Writer, in DescribeNodeParams) { out.RawByte('{') first := true _ = first @@ -7019,27 +7159,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom86(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v DescribeNodeParams) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom86(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom88(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v DescribeNodeParams) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom86(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom88(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *DescribeNodeParams) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom86(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom88(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *DescribeNodeParams) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom86(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom88(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom87(in *jlexer.Lexer, out *CopyToReturns) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom89(in *jlexer.Lexer, out *CopyToReturns) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -7070,7 +7210,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom87(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom87(out *jwriter.Writer, in CopyToReturns) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom89(out *jwriter.Writer, in CopyToReturns) { out.RawByte('{') first := true _ = first @@ -7086,27 +7226,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom87(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v CopyToReturns) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom87(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom89(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v CopyToReturns) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom87(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom89(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *CopyToReturns) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom87(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom89(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *CopyToReturns) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom87(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom89(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom88(in *jlexer.Lexer, out *CopyToParams) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom90(in *jlexer.Lexer, out *CopyToParams) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -7141,7 +7281,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom88(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom88(out *jwriter.Writer, in CopyToParams) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom90(out *jwriter.Writer, in CopyToParams) { out.RawByte('{') first := true _ = first @@ -7166,27 +7306,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom88(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v CopyToParams) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom88(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom90(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v CopyToParams) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom88(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom90(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *CopyToParams) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom88(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom90(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *CopyToParams) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom88(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom90(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom89(in *jlexer.Lexer, out *CollectClassNamesFromSubtreeReturns) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom91(in *jlexer.Lexer, out *CollectClassNamesFromSubtreeReturns) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -7238,7 +7378,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom89(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom89(out *jwriter.Writer, in CollectClassNamesFromSubtreeReturns) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom91(out *jwriter.Writer, in CollectClassNamesFromSubtreeReturns) { out.RawByte('{') first := true _ = first @@ -7263,27 +7403,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom89(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v CollectClassNamesFromSubtreeReturns) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom89(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom91(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v CollectClassNamesFromSubtreeReturns) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom89(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom91(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *CollectClassNamesFromSubtreeReturns) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom89(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom91(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *CollectClassNamesFromSubtreeReturns) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom89(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom91(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom90(in *jlexer.Lexer, out *CollectClassNamesFromSubtreeParams) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom92(in *jlexer.Lexer, out *CollectClassNamesFromSubtreeParams) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -7314,7 +7454,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom90(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom90(out *jwriter.Writer, in CollectClassNamesFromSubtreeParams) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom92(out *jwriter.Writer, in CollectClassNamesFromSubtreeParams) { out.RawByte('{') first := true _ = first @@ -7329,27 +7469,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom90(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v CollectClassNamesFromSubtreeParams) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom90(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom92(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v CollectClassNamesFromSubtreeParams) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom90(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom92(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *CollectClassNamesFromSubtreeParams) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom90(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom92(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *CollectClassNamesFromSubtreeParams) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom90(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom92(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom91(in *jlexer.Lexer, out *CSSComputedStyleProperty) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom93(in *jlexer.Lexer, out *CSSComputedStyleProperty) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -7382,7 +7522,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom91(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom91(out *jwriter.Writer, in CSSComputedStyleProperty) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom93(out *jwriter.Writer, in CSSComputedStyleProperty) { out.RawByte('{') first := true _ = first @@ -7402,27 +7542,27 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom91(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v CSSComputedStyleProperty) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom91(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom93(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v CSSComputedStyleProperty) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom91(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom93(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *CSSComputedStyleProperty) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom91(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom93(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *CSSComputedStyleProperty) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom91(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom93(l, v) } -func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom92(in *jlexer.Lexer, out *BoxModel) { +func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom94(in *jlexer.Lexer, out *BoxModel) { isTopLevel := in.IsStart() if in.IsNull() { if isTopLevel { @@ -7557,7 +7697,7 @@ func easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom92(in *jlexer.Lexer, out * in.Consumed() } } -func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom92(out *jwriter.Writer, in BoxModel) { +func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom94(out *jwriter.Writer, in BoxModel) { out.RawByte('{') first := true _ = first @@ -7646,23 +7786,23 @@ func easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom92(out *jwriter.Writer, in // MarshalJSON supports json.Marshaler interface func (v BoxModel) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom92(&w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom94(&w, v) return w.Buffer.BuildBytes(), w.Error } // MarshalEasyJSON supports easyjson.Marshaler interface func (v BoxModel) MarshalEasyJSON(w *jwriter.Writer) { - easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom92(w, v) + easyjsonC5a4559bEncodeGithubComChromedpCdprotoDom94(w, v) } // UnmarshalJSON supports json.Unmarshaler interface func (v *BoxModel) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom92(&r, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom94(&r, v) return r.Error() } // UnmarshalEasyJSON supports easyjson.Unmarshaler interface func (v *BoxModel) UnmarshalEasyJSON(l *jlexer.Lexer) { - easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom92(l, v) + easyjsonC5a4559bDecodeGithubComChromedpCdprotoDom94(l, v) }