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

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

Issue 16690004: [CSS Regions] Rename region-overflow to region-fragment (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch Created 7 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
« no previous file with comments | « Source/core/css/resolver/StyleResolver.cpp ('k') | Source/core/page/UseCounter.cpp » ('j') | 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) 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 30 matching lines...) Expand all
41 { 41 {
42 for (size_t i = 0; i < length; i++) 42 for (size_t i = 0; i < length; i++)
43 RuntimeCSSEnabled::setCSSPropertyEnabled(properties[i], featureFlag); 43 RuntimeCSSEnabled::setCSSPropertyEnabled(properties[i], featureFlag);
44 } 44 }
45 45
46 static void setPropertySwitchesFromRuntimeFeatures(BoolVector& properties) 46 static void setPropertySwitchesFromRuntimeFeatures(BoolVector& properties)
47 { 47 {
48 CSSPropertyID regionProperites[] = { 48 CSSPropertyID regionProperites[] = {
49 CSSPropertyWebkitFlowInto, 49 CSSPropertyWebkitFlowInto,
50 CSSPropertyWebkitFlowFrom, 50 CSSPropertyWebkitFlowFrom,
51 CSSPropertyWebkitRegionOverflow, 51 CSSPropertyWebkitRegionFragment,
52 CSSPropertyWebkitRegionBreakAfter, 52 CSSPropertyWebkitRegionBreakAfter,
53 CSSPropertyWebkitRegionBreakBefore, 53 CSSPropertyWebkitRegionBreakBefore,
54 CSSPropertyWebkitRegionBreakInside 54 CSSPropertyWebkitRegionBreakInside
55 }; 55 };
56 setCSSPropertiesEnabled(regionProperites, WTF_ARRAY_LENGTH(regionProperites) , RuntimeEnabledFeatures::cssRegionsEnabled()); 56 setCSSPropertiesEnabled(regionProperites, WTF_ARRAY_LENGTH(regionProperites) , RuntimeEnabledFeatures::cssRegionsEnabled());
57 CSSPropertyID exclusionProperties[] = { 57 CSSPropertyID exclusionProperties[] = {
58 CSSPropertyWebkitWrapFlow, 58 CSSPropertyWebkitWrapFlow,
59 CSSPropertyWebkitShapeMargin, 59 CSSPropertyWebkitShapeMargin,
60 CSSPropertyWebkitShapePadding, 60 CSSPropertyWebkitShapePadding,
61 CSSPropertyWebkitWrapThrough, 61 CSSPropertyWebkitWrapThrough,
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 void RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(const CSSPropertyID * properties, size_t propertyCount, Vector<CSSPropertyID>& outVector) 106 void RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(const CSSPropertyID * properties, size_t propertyCount, Vector<CSSPropertyID>& outVector)
107 { 107 {
108 for (unsigned i = 0; i < propertyCount; i++) { 108 for (unsigned i = 0; i < propertyCount; i++) {
109 CSSPropertyID property = properties[i]; 109 CSSPropertyID property = properties[i];
110 if (RuntimeCSSEnabled::isCSSPropertyEnabled(property)) 110 if (RuntimeCSSEnabled::isCSSPropertyEnabled(property))
111 outVector.append(property); 111 outVector.append(property);
112 } 112 }
113 } 113 }
114 114
115 } // namespace WebCore 115 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/resolver/StyleResolver.cpp ('k') | Source/core/page/UseCounter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698