Noticed this trying to inspect GitHub, you'd get a segfault due to the parent node being null here.
@@ -1015,7 +1015,7 @@ bool Node::is_uninteresting_whitespace_node() const
return false;
if (!layout_node())
return true;
- if (layout_node()->parent()->is_anonymous())
+ if (auto parent = layout_node()->parent(); parent && parent->is_anonymous())
}