OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 | 604 |
605 LayoutBoxModelObject* Node::layoutBoxModelObject() const | 605 LayoutBoxModelObject* Node::layoutBoxModelObject() const |
606 { | 606 { |
607 LayoutObject* renderer = this->renderer(); | 607 LayoutObject* renderer = this->renderer(); |
608 return renderer && renderer->isBoxModelObject() ? toLayoutBoxModelObject(ren
derer) : nullptr; | 608 return renderer && renderer->isBoxModelObject() ? toLayoutBoxModelObject(ren
derer) : nullptr; |
609 } | 609 } |
610 | 610 |
611 LayoutRect Node::boundingBox() const | 611 LayoutRect Node::boundingBox() const |
612 { | 612 { |
613 if (renderer()) | 613 if (renderer()) |
614 return renderer()->absoluteBoundingBoxRect(); | 614 return LayoutRect(renderer()->absoluteBoundingBoxRect()); |
615 return LayoutRect(); | 615 return LayoutRect(); |
616 } | 616 } |
617 | 617 |
618 bool Node::hasNonEmptyBoundingBox() const | 618 bool Node::hasNonEmptyBoundingBox() const |
619 { | 619 { |
620 // Before calling absoluteRects, check for the common case where the rendere
r | 620 // Before calling absoluteRects, check for the common case where the rendere
r |
621 // is non-empty, since this is a faster check and almost always returns true
. | 621 // is non-empty, since this is a faster check and almost always returns true
. |
622 LayoutBoxModelObject* box = layoutBoxModelObject(); | 622 LayoutBoxModelObject* box = layoutBoxModelObject(); |
623 if (!box) | 623 if (!box) |
624 return false; | 624 return false; |
(...skipping 1833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2458 node->showTreeForThis(); | 2458 node->showTreeForThis(); |
2459 } | 2459 } |
2460 | 2460 |
2461 void showNodePath(const blink::Node* node) | 2461 void showNodePath(const blink::Node* node) |
2462 { | 2462 { |
2463 if (node) | 2463 if (node) |
2464 node->showNodePathForThis(); | 2464 node->showNodePathForThis(); |
2465 } | 2465 } |
2466 | 2466 |
2467 #endif | 2467 #endif |
OLD | NEW |