| 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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 | 616 |
| 617 Node* nonPseudoNode() const | 617 Node* nonPseudoNode() const |
| 618 { | 618 { |
| 619 return isPseudoElement() ? 0 : node(); | 619 return isPseudoElement() ? 0 : node(); |
| 620 } | 620 } |
| 621 | 621 |
| 622 // FIXME: Why does RenderPart need this? crbug.com/422457 | 622 // FIXME: Why does RenderPart need this? crbug.com/422457 |
| 623 void clearNode() { m_node = nullptr; } | 623 void clearNode() { m_node = nullptr; } |
| 624 | 624 |
| 625 // Returns the styled node that caused the generation of this renderer. | 625 // Returns the styled node that caused the generation of this renderer. |
| 626 // This is the same as node() except for renderers of :before and :after | 626 // This is the same as node() except for renderers of :before, :after and |
| 627 // pseudo elements for which their parent node is returned. | 627 // :first-letter pseudo elements for which their parent node is returned. |
| 628 Node* generatingNode() const { return isPseudoElement() ? node()->parentOrSh
adowHostNode() : node(); } | 628 Node* generatingNode() const { return isPseudoElement() ? node()->parentOrSh
adowHostNode() : node(); } |
| 629 | 629 |
| 630 Document& document() const { return m_node->document(); } | 630 Document& document() const { return m_node->document(); } |
| 631 LocalFrame* frame() const { return document().frame(); } | 631 LocalFrame* frame() const { return document().frame(); } |
| 632 | 632 |
| 633 // Returns the object containing this one. Can be different from parent for
positioned elements. | 633 // Returns the object containing this one. Can be different from parent for
positioned elements. |
| 634 // If paintInvalidationContainer and paintInvalidationContainerSkipped are n
ot null, on return *paintInvalidationContainerSkipped | 634 // If paintInvalidationContainer and paintInvalidationContainerSkipped are n
ot null, on return *paintInvalidationContainerSkipped |
| 635 // is true if the renderer returned is an ancestor of paintInvalidationConta
iner. | 635 // is true if the renderer returned is an ancestor of paintInvalidationConta
iner. |
| 636 RenderObject* container(const RenderLayerModelObject* paintInvalidationConta
iner = 0, bool* paintInvalidationContainerSkipped = 0) const; | 636 RenderObject* container(const RenderLayerModelObject* paintInvalidationConta
iner = 0, bool* paintInvalidationContainerSkipped = 0) const; |
| 637 RenderBlock* containerForFixedPosition(const RenderLayerModelObject* paintIn
validationContainer = 0, bool* paintInvalidationContainerSkipped = 0) const; | 637 RenderBlock* containerForFixedPosition(const RenderLayerModelObject* paintIn
validationContainer = 0, bool* paintInvalidationContainerSkipped = 0) const; |
| (...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1610 void showTree(const blink::RenderObject*); | 1610 void showTree(const blink::RenderObject*); |
| 1611 void showLineTree(const blink::RenderObject*); | 1611 void showLineTree(const blink::RenderObject*); |
| 1612 void showRenderTree(const blink::RenderObject* object1); | 1612 void showRenderTree(const blink::RenderObject* object1); |
| 1613 // We don't make object2 an optional parameter so that showRenderTree | 1613 // We don't make object2 an optional parameter so that showRenderTree |
| 1614 // can be called from gdb easily. | 1614 // can be called from gdb easily. |
| 1615 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); | 1615 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); |
| 1616 | 1616 |
| 1617 #endif | 1617 #endif |
| 1618 | 1618 |
| 1619 #endif // RenderObject_h | 1619 #endif // RenderObject_h |
| OLD | NEW |