LibHTML: Rename LayoutNode::style_properties() to LayoutNode::style()

This commit is contained in:
Andreas Kling 2019-10-04 15:56:36 +02:00
parent 9c0e9a1a20
commit a7ca719c4e
Notes: sideshowbarker 2024-07-19 11:49:21 +09:00
7 changed files with 21 additions and 21 deletions

View file

@ -114,7 +114,7 @@ void dump_tree(const LayoutNode& layout_node)
}
}
layout_node.style_properties().for_each_property([&](auto& key, auto& value) {
layout_node.style().for_each_property([&](auto& key, auto& value) {
for (int i = 0; i < indent; ++i)
dbgprintf(" ");
dbgprintf(" (%s: %s)\n", key.characters(), value.to_string().characters());