Fix panics on empty trees

Signed-off-by: Evan Lloyd New-Schmidt <evan@new-schmidt.com>
This commit is contained in:
Evan Lloyd New-Schmidt 2023-10-03 14:35:53 -04:00 committed by Evan Lloyd New-Schmidt
parent 9858994f93
commit cd5132f28c

View file

@ -360,7 +360,8 @@ fn remove_attrs(document: &mut Html) {
fn final_expansions(document: &mut Html) {
let mut to_expand = Vec::new();
for el in document
.root_element()
.tree
.root()
.descendants()
.filter_map(ElementRef::wrap)
{