Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Side by Side Diff: Source/core/rendering/style/StyleRareNonInheritedData.cpp

Issue 438043002: [CSS Grid Layout] Support for justify-items property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Applied suggested changes. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/rendering/RenderGrid.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 , m_runningOpacityAnimationOnCompositor(false) 82 , m_runningOpacityAnimationOnCompositor(false)
83 , m_runningTransformAnimationOnCompositor(false) 83 , m_runningTransformAnimationOnCompositor(false)
84 , m_runningFilterAnimationOnCompositor(false) 84 , m_runningFilterAnimationOnCompositor(false)
85 , m_hasAspectRatio(false) 85 , m_hasAspectRatio(false)
86 , m_effectiveBlendMode(RenderStyle::initialBlendMode()) 86 , m_effectiveBlendMode(RenderStyle::initialBlendMode())
87 , m_touchAction(RenderStyle::initialTouchAction()) 87 , m_touchAction(RenderStyle::initialTouchAction())
88 , m_objectFit(RenderStyle::initialObjectFit()) 88 , m_objectFit(RenderStyle::initialObjectFit())
89 , m_isolation(RenderStyle::initialIsolation()) 89 , m_isolation(RenderStyle::initialIsolation())
90 , m_justifyItems(RenderStyle::initialJustifyItems()) 90 , m_justifyItems(RenderStyle::initialJustifyItems())
91 , m_justifyItemsOverflowAlignment(RenderStyle::initialJustifyItemsOverflowAl ignment()) 91 , m_justifyItemsOverflowAlignment(RenderStyle::initialJustifyItemsOverflowAl ignment())
92 , m_justifyItemsPositionType(NonLegacyPosition) 92 , m_justifyItemsPositionType(RenderStyle::initialJustifyItemsPositionType())
93 , m_justifySelf(RenderStyle::initialJustifySelf()) 93 , m_justifySelf(RenderStyle::initialJustifySelf())
94 , m_justifySelfOverflowAlignment(RenderStyle::initialJustifySelfOverflowAlig nment()) 94 , m_justifySelfOverflowAlignment(RenderStyle::initialJustifySelfOverflowAlig nment())
95 , m_scrollBehavior(RenderStyle::initialScrollBehavior()) 95 , m_scrollBehavior(RenderStyle::initialScrollBehavior())
96 , m_requiresAcceleratedCompositingForExternalReasons(false) 96 , m_requiresAcceleratedCompositingForExternalReasons(false)
97 , m_hasInlineTransform(false) 97 , m_hasInlineTransform(false)
98 { 98 {
99 m_maskBoxImage.setMaskDefaults(); 99 m_maskBoxImage.setMaskDefaults();
100 } 100 }
101 101
102 StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited Data& o) 102 StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited Data& o)
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 return false; 314 return false;
315 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions); 315 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions);
316 } 316 }
317 317
318 bool StyleRareNonInheritedData::hasFilters() const 318 bool StyleRareNonInheritedData::hasFilters() const
319 { 319 {
320 return m_filter.get() && !m_filter->m_operations.isEmpty(); 320 return m_filter.get() && !m_filter->m_operations.isEmpty();
321 } 321 }
322 322
323 } // namespace blink 323 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderGrid.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698