@@ -167,6 +167,23 @@ extern "C" {
167
167
#[ doc = "" ]
168
168
#[ doc = "*This API requires the following crate features to be activated: `HtmlFormElement`*" ]
169
169
pub fn report_validity ( this : & HtmlFormElement ) -> bool ;
170
+ # [ wasm_bindgen ( catch , method , structural , js_class = "HTMLFormElement" , js_name = requestSubmit) ]
171
+ #[ doc = "The `requestSubmit()` method." ]
172
+ #[ doc = "" ]
173
+ #[ doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/requestSubmit)" ]
174
+ #[ doc = "" ]
175
+ #[ doc = "*This API requires the following crate features to be activated: `HtmlFormElement`*" ]
176
+ pub fn request_submit ( this : & HtmlFormElement ) -> Result < ( ) , JsValue > ;
177
+ # [ wasm_bindgen ( catch , method , structural , js_class = "HTMLFormElement" , js_name = requestSubmit) ]
178
+ #[ doc = "The `requestSubmit()` method." ]
179
+ #[ doc = "" ]
180
+ #[ doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/requestSubmit)" ]
181
+ #[ doc = "" ]
182
+ #[ doc = "*This API requires the following crate features to be activated: `HtmlFormElement`*" ]
183
+ pub fn request_submit_with_submitter (
184
+ this : & HtmlFormElement ,
185
+ submitter : Option < & HtmlElement > ,
186
+ ) -> Result < ( ) , JsValue > ;
170
187
# [ wasm_bindgen ( method , structural , js_class = "HTMLFormElement" , js_name = reset) ]
171
188
#[ doc = "The `reset()` method." ]
172
189
#[ doc = "" ]
0 commit comments