| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the render object implementation for KHTML. | 2 * This file is part of the render object implementation for KHTML. |
| 3 * | 3 * |
| 4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 5 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 5 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 6 * Copyright (C) 2003 Apple Computer, Inc. | 6 * Copyright (C) 2003 Apple Computer, Inc. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 layoutVerticalBox(relayoutChildren); | 277 layoutVerticalBox(relayoutChildren); |
| 278 | 278 |
| 279 LayoutUnit oldClientAfterEdge = clientLogicalBottom(); | 279 LayoutUnit oldClientAfterEdge = clientLogicalBottom(); |
| 280 updateLogicalHeight(); | 280 updateLogicalHeight(); |
| 281 | 281 |
| 282 if (previousSize.height() != height()) | 282 if (previousSize.height() != height()) |
| 283 relayoutChildren = true; | 283 relayoutChildren = true; |
| 284 | 284 |
| 285 layoutPositionedObjects(relayoutChildren || isDocumentElement()); | 285 layoutPositionedObjects(relayoutChildren || isDocumentElement()); |
| 286 | 286 |
| 287 computeRegionRangeForBlock(flowThreadContainingBlock()); | |
| 288 | |
| 289 computeOverflow(oldClientAfterEdge); | 287 computeOverflow(oldClientAfterEdge); |
| 290 } | 288 } |
| 291 | 289 |
| 292 updateLayerTransformAfterLayout(); | 290 updateLayerTransformAfterLayout(); |
| 293 | 291 |
| 294 if (view()->layoutState()->pageLogicalHeight()) | 292 if (view()->layoutState()->pageLogicalHeight()) |
| 295 setPageLogicalOffset(view()->layoutState()->pageLogicalOffset(*this, log
icalTop())); | 293 setPageLogicalOffset(view()->layoutState()->pageLogicalOffset(*this, log
icalTop())); |
| 296 | 294 |
| 297 // Update our scrollbars if we're overflow:auto/scroll/hidden now that we kn
ow if | 295 // Update our scrollbars if we're overflow:auto/scroll/hidden now that we kn
ow if |
| 298 // we overflow or not. | 296 // we overflow or not. |
| (...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1062 if (isPseudoElement()) | 1060 if (isPseudoElement()) |
| 1063 return "RenderDeprecatedFlexibleBox (generated)"; | 1061 return "RenderDeprecatedFlexibleBox (generated)"; |
| 1064 if (isAnonymous()) | 1062 if (isAnonymous()) |
| 1065 return "RenderDeprecatedFlexibleBox (generated)"; | 1063 return "RenderDeprecatedFlexibleBox (generated)"; |
| 1066 if (isRelPositioned()) | 1064 if (isRelPositioned()) |
| 1067 return "RenderDeprecatedFlexibleBox (relative positioned)"; | 1065 return "RenderDeprecatedFlexibleBox (relative positioned)"; |
| 1068 return "RenderDeprecatedFlexibleBox"; | 1066 return "RenderDeprecatedFlexibleBox"; |
| 1069 } | 1067 } |
| 1070 | 1068 |
| 1071 } // namespace blink | 1069 } // namespace blink |
| OLD | NEW |