Changeset 156738 in webkit for trunk/Source/WebCore/rendering/RenderObject.h
- Timestamp:
- Oct 1, 2013, 3:29:34 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderObject.h
r156639 r156738 304 304 305 305 bool isRenderElement() const { return !isText(); } 306 virtual bool isBoxModelObject() const { return false; } 306 bool isRenderReplaced() const; 307 bool isBoxModelObject() const; 308 bool isRenderBlock() const; 309 bool isRenderBlockFlow() const; 310 bool isRenderInline() const; 311 bool isRenderLayerModelObject() const; 312 307 313 virtual bool isCounter() const { return false; } 308 314 virtual bool isQuote() const { return false; } … … 318 324 virtual bool isImage() const { return false; } 319 325 virtual bool isInlineBlockOrInlineTable() const { return false; } 320 virtual bool isLayerModelObject() const { return false; }321 326 virtual bool isListBox() const { return false; } 322 327 virtual bool isListItem() const { return false; } … … 331 336 virtual bool isProgress() const { return false; } 332 337 #endif 333 virtual bool isRenderBlock() const { return false; }334 virtual bool isRenderBlockFlow() const { return false; }335 338 virtual bool isRenderSVGBlock() const { return false; }; 336 339 virtual bool isRenderButton() const { return false; } 337 340 virtual bool isRenderIFrame() const { return false; } 338 341 virtual bool isRenderImage() const { return false; } 339 virtual bool isRenderInline() const { return false; }340 342 virtual bool isRenderRegion() const { return false; } 341 virtual bool isRenderReplaced() const { return false; }342 343 virtual bool isReplica() const { return false; } 343 344
Note:
See TracChangeset
for help on using the changeset viewer.