pub fn is_node_contenteditable(styled_dom: &StyledDom, node_id: NodeId) -> boolExpand description
Checks if a node has the contenteditable attribute set directly.
Returns true if:
- The node has
contenteditable: trueset via.set_contenteditable(true) - OR the node has
contenteditableattribute set totrue
This does NOT check inheritance - use is_node_contenteditable_inherited for that.