| 87 | } |
| 88 | |
| 89 | bool CSSNode::setTagName(const StringBox& tagName) { |
| 90 | if (_tagName == tagName) { |
| 91 | return false; |
| 92 | } |
| 93 | _tagName = tagName; |
| 94 | return true; |
| 95 | } |
| 96 | |
| 97 | void CSSNode::setIsManagingRootOfChildTree(bool managingRootOfChildTree) { |
| 98 | _managingRootOfChildTree = managingRootOfChildTree; |