events.go 393 B

123456789101112
  1. package input
  2. // Code generated by cdproto-gen. DO NOT EDIT.
  3. // EventDragIntercepted emitted only when Input.setInterceptDrags is enabled.
  4. // Use this data with Input.dispatchDragEvent to restore normal drag and drop
  5. // behavior.
  6. //
  7. // See: https://chromedevtools.github.io/devtools-protocol/tot/Input#event-dragIntercepted
  8. type EventDragIntercepted struct {
  9. Data *DragData `json:"data"`
  10. }