Changeset 21208 for trunk/WebCore/dom/Node.h
- Timestamp:
- 05/01/07 12:59:53 (21 months ago)
- Files:
-
- 1 modified
-
trunk/WebCore/dom/Node.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/dom/Node.h
r21184 r21208 229 229 bool hasChangedChild() const { return m_hasChangedChild; } 230 230 bool isLink() const { return m_isLink; } 231 bool implicitNode() const { return m_implicit; }232 231 void setHasID(bool b = true) { m_hasId = b; } 233 232 void setHasClass(bool b = true) { m_hasClass = b; } … … 460 459 short m_tabIndex; 461 460 462 // 16 bit fields exactly -- adding another field would increase the size of all Nodes 461 // make sure we don't use more than 16 bits here -- adding more would increase the size of all Nodes 462 463 463 bool m_hasId : 1; 464 464 bool m_hasClass : 1; … … 475 475 bool m_hovered : 1; 476 476 bool m_inActiveChain : 1; 477 bool m_implicit : 1; // implicitly generated by the parser478 477 479 478 bool m_inDetach : 1;