diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-16 18:54:35 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 13:41:55 +0200 |
commit | c07334e7bb613774d3535663433c90b6dde86943 (patch) | |
tree | 56907f1e62718d7caa21d6fc05db1b8e66578e65 /integration_tests/tests/test_html5lib.rs | |
parent | 26cd63394f640920db4ea9402d77cec1358fb098 (diff) |
break!: rename doctype _identifier methods/fields to _id
Just a bit more succinct. And now rustdoc also no longer
cuts off the names of these Emitter methods in its sidebar.
Diffstat (limited to 'integration_tests/tests/test_html5lib.rs')
-rw-r--r-- | integration_tests/tests/test_html5lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs index a0e934f..52df539 100644 --- a/integration_tests/tests/test_html5lib.rs +++ b/integration_tests/tests/test_html5lib.rs @@ -138,8 +138,8 @@ fn run_test_inner<R: Reader>( Token::Comment(comment) => actual.tokens.push(TestToken::Comment(comment.data)), Token::Doctype(doctype) => actual.tokens.push(TestToken::Doctype { name: Some(doctype.name).filter(|name| !name.is_empty()), - public_id: doctype.public_identifier, - system_id: doctype.system_identifier, + public_id: doctype.public_id, + system_id: doctype.system_id, force_quirks: doctype.force_quirks, }), }; |