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

Side by Side Diff: Source/core/css/RuntimeCSSEnabled.cpp

Issue 333423005: [CSS Grid Layout] Implement 'justify-items' parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2013 Adobe Systems Incorporated. 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 * 7 *
8 * 1. Redistributions of source code must retain the above 8 * 1. Redistributions of source code must retain the above
9 * copyright notice, this list of conditions and the following 9 * copyright notice, this list of conditions and the following
10 * disclaimer. 10 * disclaimer.
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 CSSPropertyGridColumnEnd, 77 CSSPropertyGridColumnEnd,
78 CSSPropertyGridRowStart, 78 CSSPropertyGridRowStart,
79 CSSPropertyGridRowEnd, 79 CSSPropertyGridRowEnd,
80 CSSPropertyGridColumn, 80 CSSPropertyGridColumn,
81 CSSPropertyGridRow, 81 CSSPropertyGridRow,
82 CSSPropertyGridArea, 82 CSSPropertyGridArea,
83 CSSPropertyGridAutoFlow, 83 CSSPropertyGridAutoFlow,
84 CSSPropertyGridTemplateAreas, 84 CSSPropertyGridTemplateAreas,
85 CSSPropertyGridTemplate, 85 CSSPropertyGridTemplate,
86 CSSPropertyGrid, 86 CSSPropertyGrid,
87 CSSPropertyJustifySelf 87 CSSPropertyJustifySelf,
88 CSSPropertyJustifyItems
88 }; 89 };
89 setCSSPropertiesEnabled(cssGridLayoutProperties, WTF_ARRAY_LENGTH(cssGridLay outProperties), RuntimeEnabledFeatures::cssGridLayoutEnabled()); 90 setCSSPropertiesEnabled(cssGridLayoutProperties, WTF_ARRAY_LENGTH(cssGridLay outProperties), RuntimeEnabledFeatures::cssGridLayoutEnabled());
90 CSSPropertyID cssObjectFitPositionProperties[] = { 91 CSSPropertyID cssObjectFitPositionProperties[] = {
91 CSSPropertyObjectFit, 92 CSSPropertyObjectFit,
92 CSSPropertyObjectPosition 93 CSSPropertyObjectPosition
93 }; 94 };
94 setCSSPropertiesEnabled(cssObjectFitPositionProperties, WTF_ARRAY_LENGTH(css ObjectFitPositionProperties), RuntimeEnabledFeatures::objectFitPositionEnabled() ); 95 setCSSPropertiesEnabled(cssObjectFitPositionProperties, WTF_ARRAY_LENGTH(css ObjectFitPositionProperties), RuntimeEnabledFeatures::objectFitPositionEnabled() );
95 96
96 CSSPropertyID animationProperties[] = { 97 CSSPropertyID animationProperties[] = {
97 CSSPropertyAnimation, 98 CSSPropertyAnimation,
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 void RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(const CSSPropertyID * properties, size_t propertyCount, Vector<CSSPropertyID>& outVector) 170 void RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(const CSSPropertyID * properties, size_t propertyCount, Vector<CSSPropertyID>& outVector)
170 { 171 {
171 for (unsigned i = 0; i < propertyCount; i++) { 172 for (unsigned i = 0; i < propertyCount; i++) {
172 CSSPropertyID property = properties[i]; 173 CSSPropertyID property = properties[i];
173 if (RuntimeCSSEnabled::isCSSPropertyEnabled(property)) 174 if (RuntimeCSSEnabled::isCSSPropertyEnabled(property))
174 outVector.append(property); 175 outVector.append(property);
175 } 176 }
176 } 177 }
177 178
178 } // namespace WebCore 179 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698