mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Issue #8113: Support file, about and data schemes as form action.
This commit is contained in:
parent
a8cbc28643
commit
2b332a2138
4 changed files with 36 additions and 1 deletions
|
@ -209,7 +209,8 @@ impl HTMLFormElement {
|
|||
load_data.data = Some(parsed_data.into_bytes());
|
||||
},
|
||||
// https://html.spec.whatwg.org/multipage/#submit-get-action
|
||||
("ftp", _) | ("javascript", _) | ("data", FormMethod::FormGet) => (),
|
||||
("file", _) | ("about", _) | ("data", FormMethod::FormGet) |
|
||||
("ftp", _) | ("javascript", _) => (),
|
||||
_ => return // Unimplemented (data and mailto)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue