Index: trunk/Source/core/testing/InternalSettings.h |
=================================================================== |
--- trunk/Source/core/testing/InternalSettings.h (revision 150485) |
+++ trunk/Source/core/testing/InternalSettings.h (working copy) |
@@ -51,6 +51,7 @@ |
void restoreTo(Settings*); |
bool m_originalCSSExclusionsEnabled; |
+ bool m_originalCSSVariablesEnabled; |
bool m_originalAuthorShadowDOMForAnyElementEnabled; |
bool m_originalExperimentalShadowDOMEnabled; |
bool m_originalExperimentalWebSocketEnabled; |
@@ -104,6 +105,10 @@ |
void setShouldDisplayTrackKind(const String& kind, bool, ExceptionCode&); |
bool shouldDisplayTrackKind(const String& kind, ExceptionCode&); |
+ // cssVariablesEnabled is not backed by RuntimeEnabledFeatures, but should be. |
+ bool cssVariablesEnabled(ExceptionCode&); |
+ void setCSSVariablesEnabled(bool, ExceptionCode&); |
+ |
// FIXME: The following are RuntimeEnabledFeatures and likely |
// cannot be changed after process start. These setters should |
// be removed or moved onto internals.runtimeFlags: |