| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) | 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) |
| 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2009 Google Inc. All rights reserved. | 7 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 | 315 |
| 316 public: | 316 public: |
| 317 RenderArena* renderArena() const { return document()->renderArena(); } | 317 RenderArena* renderArena() const { return document()->renderArena(); } |
| 318 | 318 |
| 319 bool isPseudoElement() const { return node() && node()->isPseudoElement(); } | 319 bool isPseudoElement() const { return node() && node()->isPseudoElement(); } |
| 320 | 320 |
| 321 virtual bool isBR() const { return false; } | 321 virtual bool isBR() const { return false; } |
| 322 virtual bool isBlockFlow() const { return false; } | 322 virtual bool isBlockFlow() const { return false; } |
| 323 virtual bool isBoxModelObject() const { return false; } | 323 virtual bool isBoxModelObject() const { return false; } |
| 324 virtual bool isCounter() const { return false; } | 324 virtual bool isCounter() const { return false; } |
| 325 #if ENABLE(DIALOG_ELEMENT) | |
| 326 virtual bool isDialog() const { return false; } | 325 virtual bool isDialog() const { return false; } |
| 327 #endif | |
| 328 virtual bool isQuote() const { return false; } | 326 virtual bool isQuote() const { return false; } |
| 329 | 327 |
| 330 virtual bool isDetailsMarker() const { return false; } | 328 virtual bool isDetailsMarker() const { return false; } |
| 331 virtual bool isEmbeddedObject() const { return false; } | 329 virtual bool isEmbeddedObject() const { return false; } |
| 332 virtual bool isFieldset() const { return false; } | 330 virtual bool isFieldset() const { return false; } |
| 333 virtual bool isFileUploadControl() const { return false; } | 331 virtual bool isFileUploadControl() const { return false; } |
| 334 virtual bool isFrame() const { return false; } | 332 virtual bool isFrame() const { return false; } |
| 335 virtual bool isFrameSet() const { return false; } | 333 virtual bool isFrameSet() const { return false; } |
| 336 virtual bool isImage() const { return false; } | 334 virtual bool isImage() const { return false; } |
| 337 virtual bool isInlineBlockOrInlineTable() const { return false; } | 335 virtual bool isInlineBlockOrInlineTable() const { return false; } |
| (...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 // Outside the WebCore namespace for ease of invocation from gdb. | 1339 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1342 void showTree(const WebCore::RenderObject*); | 1340 void showTree(const WebCore::RenderObject*); |
| 1343 void showLineTree(const WebCore::RenderObject*); | 1341 void showLineTree(const WebCore::RenderObject*); |
| 1344 void showRenderTree(const WebCore::RenderObject* object1); | 1342 void showRenderTree(const WebCore::RenderObject* object1); |
| 1345 // We don't make object2 an optional parameter so that showRenderTree | 1343 // We don't make object2 an optional parameter so that showRenderTree |
| 1346 // can be called from gdb easily. | 1344 // can be called from gdb easily. |
| 1347 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); | 1345 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); |
| 1348 #endif | 1346 #endif |
| 1349 | 1347 |
| 1350 #endif // RenderObject_h | 1348 #endif // RenderObject_h |
| OLD | NEW |