2017-07-18 03:54:32 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
/* A namespace class for style system prefs */
|
|
|
|
|
|
|
|
#ifndef mozilla_StylePrefs_h
|
|
|
|
#define mozilla_StylePrefs_h
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
struct StylePrefs
|
|
|
|
{
|
2017-08-03 03:37:02 +03:00
|
|
|
static bool sFontDisplayEnabled;
|
2017-07-18 03:54:32 +03:00
|
|
|
static bool sOpentypeSVGEnabled;
|
|
|
|
static bool sWebkitPrefixedAliasesEnabled;
|
|
|
|
static bool sWebkitDevicePixelRatioEnabled;
|
|
|
|
static bool sMozGradientsEnabled;
|
|
|
|
static bool sControlCharVisibility;
|
|
|
|
static bool sFramesTimingFunctionEnabled;
|
2017-08-02 09:34:47 +03:00
|
|
|
static bool sUnprefixedFullscreenApiEnabled;
|
2017-11-17 09:47:34 +03:00
|
|
|
static bool sVisitedLinksEnabled;
|
2017-11-30 00:16:46 +03:00
|
|
|
static bool sMozDocumentEnabledInContent;
|
2017-12-05 22:11:10 +03:00
|
|
|
static bool sGridTemplateSubgridValueEnabled;
|
2017-10-26 21:12:17 +03:00
|
|
|
static bool sEmulateMozBoxWithFlex;
|
2017-07-18 03:54:32 +03:00
|
|
|
|
|
|
|
static void Init();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_StylePrefs_h
|