devtools-protocol 0.0.1238944 → 0.0.1239539
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.
@@ -2183,6 +2183,11 @@
|
|
2183
2183
|
"name": "fillingStrategy",
|
2184
2184
|
"description": "The filling strategy",
|
2185
2185
|
"$ref": "FillingStrategy"
|
2186
|
+
},
|
2187
|
+
{
|
2188
|
+
"name": "fieldId",
|
2189
|
+
"description": "The form field's DOM node",
|
2190
|
+
"$ref": "DOM.BackendNodeId"
|
2186
2191
|
}
|
2187
2192
|
]
|
2188
2193
|
}
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1083,6 +1083,8 @@ experimental domain Autofill
|
|
1083
1083
|
string autofillType
|
1084
1084
|
# The filling strategy
|
1085
1085
|
FillingStrategy fillingStrategy
|
1086
|
+
# The form field's DOM node
|
1087
|
+
DOM.BackendNodeId fieldId
|
1086
1088
|
|
1087
1089
|
# Emitted when an address form is filled.
|
1088
1090
|
event addressFormFilled
|
package/types/protocol.d.ts
CHANGED