| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 | 245 |
| 246 computeIntrinsicLogicalWidths(m_minPreferredLogicalWidth, m_maxPreferredLogi
calWidth); | 246 computeIntrinsicLogicalWidths(m_minPreferredLogicalWidth, m_maxPreferredLogi
calWidth); |
| 247 | 247 |
| 248 LayoutUnit borderAndPaddingInInlineDirection = borderAndPaddingLogicalWidth(
); | 248 LayoutUnit borderAndPaddingInInlineDirection = borderAndPaddingLogicalWidth(
); |
| 249 m_minPreferredLogicalWidth += borderAndPaddingInInlineDirection; | 249 m_minPreferredLogicalWidth += borderAndPaddingInInlineDirection; |
| 250 m_maxPreferredLogicalWidth += borderAndPaddingInInlineDirection; | 250 m_maxPreferredLogicalWidth += borderAndPaddingInInlineDirection; |
| 251 | 251 |
| 252 setPreferredLogicalWidthsDirty(false); | 252 setPreferredLogicalWidthsDirty(false); |
| 253 } | 253 } |
| 254 | 254 |
| 255 void RenderGrid::removeChild(RenderObject* child) | |
| 256 { | |
| 257 m_orderIterator.invalidate(); | |
| 258 | |
| 259 RenderBlock::removeChild(child); | |
| 260 } | |
| 261 | |
| 262 LayoutUnit RenderGrid::computePreferredTrackWidth(const GridLength& gridLength,
size_t trackIndex) const | 255 LayoutUnit RenderGrid::computePreferredTrackWidth(const GridLength& gridLength,
size_t trackIndex) const |
| 263 { | 256 { |
| 264 if (gridLength.isFlex()) | 257 if (gridLength.isFlex()) |
| 265 return 0; | 258 return 0; |
| 266 | 259 |
| 267 const Length& length = gridLength.length(); | 260 const Length& length = gridLength.length(); |
| 268 | 261 |
| 269 if (length.isFixed()) { | 262 if (length.isFixed()) { |
| 270 // Grid areas don't have borders, margins or paddings so we don't need t
o account for them. | 263 // Grid areas don't have borders, margins or paddings so we don't need t
o account for them. |
| 271 return length.intValue(); | 264 return length.intValue(); |
| (...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1058 if (isOutOfFlowPositioned()) | 1051 if (isOutOfFlowPositioned()) |
| 1059 return "RenderGrid (positioned)"; | 1052 return "RenderGrid (positioned)"; |
| 1060 if (isAnonymous()) | 1053 if (isAnonymous()) |
| 1061 return "RenderGrid (generated)"; | 1054 return "RenderGrid (generated)"; |
| 1062 if (isRelPositioned()) | 1055 if (isRelPositioned()) |
| 1063 return "RenderGrid (relative positioned)"; | 1056 return "RenderGrid (relative positioned)"; |
| 1064 return "RenderGrid"; | 1057 return "RenderGrid"; |
| 1065 } | 1058 } |
| 1066 | 1059 |
| 1067 } // namespace WebCore | 1060 } // namespace WebCore |
| OLD | NEW |