| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 virtual bool isImage() const { return false; } | 327 virtual bool isImage() const { return false; } |
| 328 virtual bool isInlineBlock() const { return false; } | 328 virtual bool isInlineBlock() const { return false; } |
| 329 virtual bool isLayerModelObject() const { return false; } | 329 virtual bool isLayerModelObject() const { return false; } |
| 330 virtual bool isListBox() const { return false; } | 330 virtual bool isListBox() const { return false; } |
| 331 virtual bool isMedia() const { return false; } | 331 virtual bool isMedia() const { return false; } |
| 332 virtual bool isRenderBlock() const { return false; } | 332 virtual bool isRenderBlock() const { return false; } |
| 333 virtual bool isRenderBlockFlow() const { return false; } | 333 virtual bool isRenderBlockFlow() const { return false; } |
| 334 virtual bool isRenderGrid() const { return false; } | 334 virtual bool isRenderGrid() const { return false; } |
| 335 virtual bool isRenderImage() const { return false; } | 335 virtual bool isRenderImage() const { return false; } |
| 336 virtual bool isRenderInline() const { return false; } | 336 virtual bool isRenderInline() const { return false; } |
| 337 virtual bool isRenderPart() const { return false; } | |
| 338 virtual bool isRenderView() const { return false; } | 337 virtual bool isRenderView() const { return false; } |
| 339 virtual bool isVideo() const { return false; } | 338 virtual bool isVideo() const { return false; } |
| 340 virtual bool isWidget() const { return false; } | 339 virtual bool isWidget() const { return false; } |
| 341 | 340 |
| 342 bool isDocumentElement() const { return document().documentElement() == m_no
de; } | 341 bool isDocumentElement() const { return document().documentElement() == m_no
de; } |
| 343 | 342 |
| 344 bool everHadLayout() const { return m_bitfields.everHadLayout(); } | 343 bool everHadLayout() const { return m_bitfields.everHadLayout(); } |
| 345 | 344 |
| 346 bool childrenInline() const { return m_bitfields.childrenInline(); } | 345 bool childrenInline() const { return m_bitfields.childrenInline(); } |
| 347 void setChildrenInline(bool b) { m_bitfields.setChildrenInline(b); } | 346 void setChildrenInline(bool b) { m_bitfields.setChildrenInline(b); } |
| (...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1344 void showTree(const blink::RenderObject*); | 1343 void showTree(const blink::RenderObject*); |
| 1345 void showLineTree(const blink::RenderObject*); | 1344 void showLineTree(const blink::RenderObject*); |
| 1346 void showRenderTree(const blink::RenderObject* object1); | 1345 void showRenderTree(const blink::RenderObject* object1); |
| 1347 // We don't make object2 an optional parameter so that showRenderTree | 1346 // We don't make object2 an optional parameter so that showRenderTree |
| 1348 // can be called from gdb easily. | 1347 // can be called from gdb easily. |
| 1349 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); | 1348 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); |
| 1350 | 1349 |
| 1351 #endif | 1350 #endif |
| 1352 | 1351 |
| 1353 #endif // RenderObject_h | 1352 #endif // RenderObject_h |
| OLD | NEW |