Chromium Code Reviews| Index: Source/core/page/RuntimeCSSEnabled.cpp |
| diff --git a/Source/core/page/RuntimeCSSEnabled.cpp b/Source/core/page/RuntimeCSSEnabled.cpp |
| index 083647db22c10b6a58366decabadf63f5d93c7d9..0077a6dad21af2a25cb65c16e7b60212fd40c551 100644 |
| --- a/Source/core/page/RuntimeCSSEnabled.cpp |
| +++ b/Source/core/page/RuntimeCSSEnabled.cpp |
| @@ -112,6 +112,8 @@ static void setPropertySwitchesFromRuntimeFeatures() |
| RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyPaintOrder, RuntimeEnabledFeatures::svgPaintOrderEnabled()); |
| RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyVariable, RuntimeEnabledFeatures::cssVariablesEnabled()); |
| RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyObjectFit, RuntimeEnabledFeatures::objectFitPositionEnabled()); |
| + |
| + RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyInternalCallback, false); |
|
esprehn
2013/09/04 06:08:28
This needs a comment why you pass false and nothin
Jeffrey Yasskin
2013/09/12 22:09:59
Done; see if you like the wording.
|
| } |
| static BoolVector& propertySwitches() |