| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> | 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. |
| 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. | 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. |
| 7 * Copyright (C) 2015 Google Inc. All rights reserved. | 7 * Copyright (C) 2015 Google 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 Lesser General Public | 10 * modify it under the terms of the GNU Lesser General Public |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 #include "core/css/CSSValuePool.h" | 49 #include "core/css/CSSValuePool.h" |
| 50 #include "core/layout/LayoutBlock.h" | 50 #include "core/layout/LayoutBlock.h" |
| 51 #include "core/layout/LayoutBox.h" | 51 #include "core/layout/LayoutBox.h" |
| 52 #include "core/layout/LayoutGrid.h" | 52 #include "core/layout/LayoutGrid.h" |
| 53 #include "core/layout/LayoutObject.h" | 53 #include "core/layout/LayoutObject.h" |
| 54 #include "core/style/ComputedStyle.h" | 54 #include "core/style/ComputedStyle.h" |
| 55 #include "core/style/ContentData.h" | 55 #include "core/style/ContentData.h" |
| 56 #include "core/style/PathStyleMotionPath.h" | 56 #include "core/style/PathStyleMotionPath.h" |
| 57 #include "core/style/QuotesData.h" | 57 #include "core/style/QuotesData.h" |
| 58 #include "core/style/ShadowList.h" | 58 #include "core/style/ShadowList.h" |
| 59 #include "core/style/StyleVariableData.h" |
| 59 #include "core/svg/SVGPathUtilities.h" | 60 #include "core/svg/SVGPathUtilities.h" |
| 60 #include "platform/LengthFunctions.h" | 61 #include "platform/LengthFunctions.h" |
| 61 | 62 |
| 62 namespace blink { | 63 namespace blink { |
| 63 | 64 |
| 64 inline static bool isFlexOrGrid(const ComputedStyle* style) | 65 inline static bool isFlexOrGrid(const ComputedStyle* style) |
| 65 { | 66 { |
| 66 return style && style->isDisplayFlexibleOrGridBox(); | 67 return style && style->isDisplayFlexibleOrGridBox(); |
| 67 } | 68 } |
| 68 | 69 |
| (...skipping 2665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2734 case CSSPropertyAll: | 2735 case CSSPropertyAll: |
| 2735 return nullptr; | 2736 return nullptr; |
| 2736 default: | 2737 default: |
| 2737 break; | 2738 break; |
| 2738 } | 2739 } |
| 2739 ASSERT_NOT_REACHED(); | 2740 ASSERT_NOT_REACHED(); |
| 2740 return nullptr; | 2741 return nullptr; |
| 2741 } | 2742 } |
| 2742 | 2743 |
| 2743 } | 2744 } |
| OLD | NEW |