| 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 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1111 LayoutUnit heightWithoutIntrinsicPadding = totalHeight - intrinsicPaddin
gBefore() - intrinsicPaddingAfter(); | 1111 LayoutUnit heightWithoutIntrinsicPadding = totalHeight - intrinsicPaddin
gBefore() - intrinsicPaddingAfter(); |
| 1112 totalHeight -= scrollbarHeight; | 1112 totalHeight -= scrollbarHeight; |
| 1113 LayoutUnit newBeforePadding = (totalHeight - heightWithoutIntrinsicPaddi
ng) / 2; | 1113 LayoutUnit newBeforePadding = (totalHeight - heightWithoutIntrinsicPaddi
ng) / 2; |
| 1114 LayoutUnit newAfterPadding = totalHeight - heightWithoutIntrinsicPadding
- newBeforePadding; | 1114 LayoutUnit newAfterPadding = totalHeight - heightWithoutIntrinsicPadding
- newBeforePadding; |
| 1115 setIntrinsicPaddingBefore(newBeforePadding); | 1115 setIntrinsicPaddingBefore(newBeforePadding); |
| 1116 setIntrinsicPaddingAfter(newAfterPadding); | 1116 setIntrinsicPaddingAfter(newAfterPadding); |
| 1117 } else | 1117 } else |
| 1118 setIntrinsicPaddingAfter(intrinsicPaddingAfter() - scrollbarHeight); | 1118 setIntrinsicPaddingAfter(intrinsicPaddingAfter() - scrollbarHeight); |
| 1119 } | 1119 } |
| 1120 | 1120 |
| 1121 RenderTableCell* RenderTableCell::createAnonymousWithParentRenderer(const Render
Object* parent) |
| 1122 { |
| 1123 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyle(parent->sty
le()); |
| 1124 newStyle->setDisplay(TABLE_CELL); |
| 1125 |
| 1126 RenderTableCell* newCell = new (parent->renderArena()) RenderTableCell(paren
t->document() /* is anonymous */); |
| 1127 newCell->setStyle(newStyle.release()); |
| 1128 return newCell; |
| 1129 } |
| 1130 |
| 1121 } // namespace WebCore | 1131 } // namespace WebCore |
| OLD | NEW |