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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 // RenderObjects are allocated out of the rendering partition. | 317 // RenderObjects are allocated out of the rendering partition. |
318 void* operator new(size_t); | 318 void* operator new(size_t); |
319 void operator delete(void*); | 319 void operator delete(void*); |
320 | 320 |
321 public: | 321 public: |
322 bool isPseudoElement() const { return node() && node()->isPseudoElement(); } | 322 bool isPseudoElement() const { return node() && node()->isPseudoElement(); } |
323 | 323 |
324 virtual bool isBR() const { return false; } | 324 virtual bool isBR() const { return false; } |
325 virtual bool isBoxModelObject() const { return false; } | 325 virtual bool isBoxModelObject() const { return false; } |
326 virtual bool isCounter() const { return false; } | 326 virtual bool isCounter() const { return false; } |
327 virtual bool isDialog() const { return false; } | |
328 virtual bool isQuote() const { return false; } | 327 virtual bool isQuote() const { return false; } |
329 | 328 |
330 virtual bool isDetailsMarker() const { return false; } | 329 virtual bool isDetailsMarker() const { return false; } |
331 virtual bool isEmbeddedObject() const { return false; } | 330 virtual bool isEmbeddedObject() const { return false; } |
332 virtual bool isFieldset() const { return false; } | 331 virtual bool isFieldset() const { return false; } |
333 virtual bool isFileUploadControl() const { return false; } | 332 virtual bool isFileUploadControl() const { return false; } |
334 virtual bool isFrame() const { return false; } | 333 virtual bool isFrame() const { return false; } |
335 virtual bool isFrameSet() const { return false; } | 334 virtual bool isFrameSet() const { return false; } |
336 virtual bool isImage() const { return false; } | 335 virtual bool isImage() const { return false; } |
337 virtual bool isInlineBlockOrInlineTable() const { return false; } | 336 virtual bool isInlineBlockOrInlineTable() const { return false; } |
(...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1387 void showTree(const WebCore::RenderObject*); | 1386 void showTree(const WebCore::RenderObject*); |
1388 void showLineTree(const WebCore::RenderObject*); | 1387 void showLineTree(const WebCore::RenderObject*); |
1389 void showRenderTree(const WebCore::RenderObject* object1); | 1388 void showRenderTree(const WebCore::RenderObject* object1); |
1390 // We don't make object2 an optional parameter so that showRenderTree | 1389 // We don't make object2 an optional parameter so that showRenderTree |
1391 // can be called from gdb easily. | 1390 // can be called from gdb easily. |
1392 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); | 1391 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); |
1393 | 1392 |
1394 #endif | 1393 #endif |
1395 | 1394 |
1396 #endif // RenderObject_h | 1395 #endif // RenderObject_h |
OLD | NEW |