mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Use specific assertion for DOM servoparser async_html
This commit is contained in:
parent
5486335708
commit
0e6f446a61
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ impl Tokenizer {
|
|||
control.set_form_owner_from_parser(&form);
|
||||
} else {
|
||||
// TODO remove this code when keygen is implemented.
|
||||
assert!(node.NodeName() == "KEYGEN", "Unknown form-associatable element");
|
||||
assert_eq!(node.NodeName(), "KEYGEN", "Unknown form-associatable element");
|
||||
}
|
||||
}
|
||||
ParseOperation::Pop { node } => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue