mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +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);
|
control.set_form_owner_from_parser(&form);
|
||||||
} else {
|
} else {
|
||||||
// TODO remove this code when keygen is implemented.
|
// 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 } => {
|
ParseOperation::Pop { node } => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue