| 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 virtual bool isCanvas() const { return false; } | 323 virtual bool isCanvas() const { return false; } |
| 324 virtual bool isImage() const { return false; } | 324 virtual bool isImage() const { return false; } |
| 325 virtual bool isInlineBlock() const { return false; } | 325 virtual bool isInlineBlock() const { return false; } |
| 326 virtual bool isLayerModelObject() const { return false; } | 326 virtual bool isLayerModelObject() const { return false; } |
| 327 virtual bool isMedia() const { return false; } | 327 virtual bool isMedia() const { return false; } |
| 328 virtual bool isRenderBlock() const { return false; } | 328 virtual bool isRenderBlock() const { return false; } |
| 329 virtual bool isRenderBlockFlow() const { return false; } | 329 virtual bool isRenderBlockFlow() const { return false; } |
| 330 virtual bool isRenderImage() const { return false; } | 330 virtual bool isRenderImage() const { return false; } |
| 331 virtual bool isRenderInline() const { return false; } | 331 virtual bool isRenderInline() const { return false; } |
| 332 virtual bool isRenderView() const { return false; } | 332 virtual bool isRenderView() const { return false; } |
| 333 virtual bool isVideo() const { return false; } | |
| 334 virtual bool isWidget() const { return false; } | 333 virtual bool isWidget() const { return false; } |
| 335 | 334 |
| 336 bool isDocumentElement() const { return document().documentElement() == m_no
de; } | 335 bool isDocumentElement() const { return document().documentElement() == m_no
de; } |
| 337 | 336 |
| 338 bool everHadLayout() const { return m_bitfields.everHadLayout(); } | 337 bool everHadLayout() const { return m_bitfields.everHadLayout(); } |
| 339 | 338 |
| 340 bool childrenInline() const { return m_bitfields.childrenInline(); } | 339 bool childrenInline() const { return m_bitfields.childrenInline(); } |
| 341 void setChildrenInline(bool b) { m_bitfields.setChildrenInline(b); } | 340 void setChildrenInline(bool b) { m_bitfields.setChildrenInline(b); } |
| 342 | 341 |
| 343 bool alwaysCreateLineBoxesForRenderInline() const | 342 bool alwaysCreateLineBoxesForRenderInline() const |
| (...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1322 void showTree(const blink::RenderObject*); | 1321 void showTree(const blink::RenderObject*); |
| 1323 void showLineTree(const blink::RenderObject*); | 1322 void showLineTree(const blink::RenderObject*); |
| 1324 void showRenderTree(const blink::RenderObject* object1); | 1323 void showRenderTree(const blink::RenderObject* object1); |
| 1325 // We don't make object2 an optional parameter so that showRenderTree | 1324 // We don't make object2 an optional parameter so that showRenderTree |
| 1326 // can be called from gdb easily. | 1325 // can be called from gdb easily. |
| 1327 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); | 1326 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); |
| 1328 | 1327 |
| 1329 #endif | 1328 #endif |
| 1330 | 1329 |
| 1331 #endif // RenderObject_h | 1330 #endif // RenderObject_h |
| OLD | NEW |