OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) |
3 * (C) 1997 Torben Weis (weis@kde.org) | 3 * (C) 1997 Torben Weis (weis@kde.org) |
4 * (C) 1998 Waldo Bastian (bastian@kde.org) | 4 * (C) 1998 Waldo Bastian (bastian@kde.org) |
5 * (C) 1999 Lars Knoll (knoll@kde.org) | 5 * (C) 1999 Lars Knoll (knoll@kde.org) |
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 { | 295 { |
296 return static_cast<int>(computedCSSPaddingAfter()) + intrinsicPaddingAfter()
; | 296 return static_cast<int>(computedCSSPaddingAfter()) + intrinsicPaddingAfter()
; |
297 } | 297 } |
298 | 298 |
299 void LayoutTableCell::setOverrideLogicalContentHeightFromRowHeight(LayoutUnit ro
wHeight) | 299 void LayoutTableCell::setOverrideLogicalContentHeightFromRowHeight(LayoutUnit ro
wHeight) |
300 { | 300 { |
301 clearIntrinsicPadding(); | 301 clearIntrinsicPadding(); |
302 setOverrideLogicalContentHeight(std::max<LayoutUnit>(0, rowHeight - borderAn
dPaddingLogicalHeight())); | 302 setOverrideLogicalContentHeight(std::max<LayoutUnit>(0, rowHeight - borderAn
dPaddingLogicalHeight())); |
303 } | 303 } |
304 | 304 |
305 LayoutSize LayoutTableCell::offsetFromContainer(const LayoutObject* o, const Lay
outPoint& point, bool* offsetDependsOnPoint) const | 305 LayoutSize LayoutTableCell::offsetFromContainer(const LayoutObject* o) const |
306 { | 306 { |
307 ASSERT(o == container()); | 307 ASSERT(o == container()); |
308 | 308 |
309 LayoutSize offset = LayoutBlockFlow::offsetFromContainer(o, point, offsetDep
endsOnPoint); | 309 LayoutSize offset = LayoutBlockFlow::offsetFromContainer(o); |
310 if (parent()) | 310 if (parent()) |
311 offset -= parentBox()->locationOffset(); | 311 offset -= parentBox()->locationOffset(); |
312 | 312 |
313 return offset; | 313 return offset; |
314 } | 314 } |
315 | 315 |
316 LayoutRect LayoutTableCell::clippedOverflowRectForPaintInvalidation(const Layout
BoxModelObject* paintInvalidationContainer, const PaintInvalidationState* paintI
nvalidationState) const | 316 LayoutRect LayoutTableCell::clippedOverflowRectForPaintInvalidation(const Layout
BoxModelObject* paintInvalidationContainer, const PaintInvalidationState* paintI
nvalidationState) const |
317 { | 317 { |
318 // If the table grid is dirty, we cannot get reliable information about adjo
ining cells, | 318 // If the table grid is dirty, we cannot get reliable information about adjo
ining cells, |
319 // so we ignore outside borders. This should not be a problem because it mea
ns that | 319 // so we ignore outside borders. This should not be a problem because it mea
ns that |
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1035 | 1035 |
1036 LayoutTableCell* LayoutTableCell::createAnonymousWithParent(const LayoutObject*
parent) | 1036 LayoutTableCell* LayoutTableCell::createAnonymousWithParent(const LayoutObject*
parent) |
1037 { | 1037 { |
1038 LayoutTableCell* newCell = LayoutTableCell::createAnonymous(&parent->documen
t()); | 1038 LayoutTableCell* newCell = LayoutTableCell::createAnonymous(&parent->documen
t()); |
1039 RefPtr<ComputedStyle> newStyle = ComputedStyle::createAnonymousStyleWithDisp
lay(parent->styleRef(), TABLE_CELL); | 1039 RefPtr<ComputedStyle> newStyle = ComputedStyle::createAnonymousStyleWithDisp
lay(parent->styleRef(), TABLE_CELL); |
1040 newCell->setStyle(newStyle.release()); | 1040 newCell->setStyle(newStyle.release()); |
1041 return newCell; | 1041 return newCell; |
1042 } | 1042 } |
1043 | 1043 |
1044 } // namespace blink | 1044 } // namespace blink |
OLD | NEW |