devtools-protocol 0.0.1260275 → 0.0.1260888

Sign up to get free protection for your applications and to get access to all the features.
@@ -2227,6 +2227,11 @@
2227
2227
  "description": "The filling strategy",
2228
2228
  "$ref": "FillingStrategy"
2229
2229
  },
2230
+ {
2231
+ "name": "frameId",
2232
+ "description": "The frame the field belongs to",
2233
+ "$ref": "Page.FrameId"
2234
+ },
2230
2235
  {
2231
2236
  "name": "fieldId",
2232
2237
  "description": "The form field's DOM node",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1260275",
3
+ "version": "0.0.1260888",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1110,6 +1110,8 @@ experimental domain Autofill
1110
1110
  string autofillType
1111
1111
  # The filling strategy
1112
1112
  FillingStrategy fillingStrategy
1113
+ # The frame the field belongs to
1114
+ Page.FrameId frameId
1113
1115
  # The form field's DOM node
1114
1116
  DOM.BackendNodeId fieldId
1115
1117
 
@@ -3843,6 +3843,10 @@ export namespace Protocol {
3843
3843
  * The filling strategy
3844
3844
  */
3845
3845
  fillingStrategy: FillingStrategy;
3846
+ /**
3847
+ * The frame the field belongs to
3848
+ */
3849
+ frameId: Page.FrameId;
3846
3850
  /**
3847
3851
  * The form field's DOM node
3848
3852
  */