OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |