2016-01-11 02:28:35 +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: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2008-07-26 20:14:48 +04:00
|
|
|
|
|
|
|
/* the features that media queries can test */
|
|
|
|
|
|
|
|
#include "nsMediaFeatures.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsCSSKeywords.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsCSSValue.h"
|
2013-09-16 05:06:52 +04:00
|
|
|
#ifdef XP_WIN
|
2013-03-03 05:20:07 +04:00
|
|
|
#include "mozilla/LookAndFeel.h"
|
2013-09-16 05:06:52 +04:00
|
|
|
#endif
|
2009-10-16 04:23:19 +04:00
|
|
|
#include "nsCSSRuleProcessor.h"
|
2013-09-23 15:55:35 +04:00
|
|
|
#include "nsDeviceContext.h"
|
2016-02-23 19:10:00 +03:00
|
|
|
#include "nsIBaseWindow.h"
|
2017-08-09 16:54:06 +03:00
|
|
|
#include "nsIDocShell.h"
|
2013-10-03 00:09:18 +04:00
|
|
|
#include "nsIDocument.h"
|
2016-12-01 21:40:04 +03:00
|
|
|
#include "nsIWidget.h"
|
2016-02-24 10:01:11 +03:00
|
|
|
#include "nsContentUtils.h"
|
2016-09-26 15:03:25 +03:00
|
|
|
#include "mozilla/StyleSheet.h"
|
|
|
|
#include "mozilla/StyleSheetInlines.h"
|
2008-07-26 20:14:48 +04:00
|
|
|
|
2011-09-09 06:27:12 +04:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2017-11-17 10:35:26 +03:00
|
|
|
static nsTArray<RefPtr<nsAtom>>* sSystemMetrics = nullptr;
|
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
// Cached theme identifier for the moz-windows-theme media query.
|
|
|
|
static uint8_t sWinThemeId = LookAndFeel::eWindowsTheme_Generic;
|
|
|
|
#endif
|
|
|
|
|
2015-11-20 05:09:07 +03:00
|
|
|
static const nsCSSProps::KTableEntry kOrientationKeywords[] = {
|
2015-11-20 05:08:57 +03:00
|
|
|
{ eCSSKeyword_portrait, NS_STYLE_ORIENTATION_PORTRAIT },
|
|
|
|
{ eCSSKeyword_landscape, NS_STYLE_ORIENTATION_LANDSCAPE },
|
|
|
|
{ eCSSKeyword_UNKNOWN, -1 }
|
2008-07-26 20:14:48 +04:00
|
|
|
};
|
|
|
|
|
2015-11-20 05:09:07 +03:00
|
|
|
static const nsCSSProps::KTableEntry kScanKeywords[] = {
|
2015-11-20 05:08:57 +03:00
|
|
|
{ eCSSKeyword_progressive, NS_STYLE_SCAN_PROGRESSIVE },
|
|
|
|
{ eCSSKeyword_interlace, NS_STYLE_SCAN_INTERLACE },
|
|
|
|
{ eCSSKeyword_UNKNOWN, -1 }
|
2008-07-26 20:14:48 +04:00
|
|
|
};
|
|
|
|
|
2016-02-23 19:10:00 +03:00
|
|
|
static const nsCSSProps::KTableEntry kDisplayModeKeywords[] = {
|
|
|
|
{ eCSSKeyword_browser, NS_STYLE_DISPLAY_MODE_BROWSER },
|
|
|
|
{ eCSSKeyword_minimal_ui, NS_STYLE_DISPLAY_MODE_MINIMAL_UI },
|
|
|
|
{ eCSSKeyword_standalone, NS_STYLE_DISPLAY_MODE_STANDALONE },
|
|
|
|
{ eCSSKeyword_fullscreen, NS_STYLE_DISPLAY_MODE_FULLSCREEN },
|
|
|
|
{ eCSSKeyword_UNKNOWN, -1 }
|
|
|
|
};
|
|
|
|
|
2010-10-10 00:53:45 +04:00
|
|
|
#ifdef XP_WIN
|
|
|
|
struct WindowsThemeName {
|
2016-01-11 02:28:35 +03:00
|
|
|
LookAndFeel::WindowsTheme id;
|
|
|
|
const wchar_t* name;
|
2010-10-10 00:53:45 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Windows theme identities used in the -moz-windows-theme media query.
|
|
|
|
const WindowsThemeName themeStrings[] = {
|
2016-01-11 02:28:35 +03:00
|
|
|
{ LookAndFeel::eWindowsTheme_Aero, L"aero" },
|
|
|
|
{ LookAndFeel::eWindowsTheme_AeroLite, L"aero-lite" },
|
|
|
|
{ LookAndFeel::eWindowsTheme_LunaBlue, L"luna-blue" },
|
|
|
|
{ LookAndFeel::eWindowsTheme_LunaOlive, L"luna-olive" },
|
|
|
|
{ LookAndFeel::eWindowsTheme_LunaSilver, L"luna-silver" },
|
|
|
|
{ LookAndFeel::eWindowsTheme_Royale, L"royale" },
|
|
|
|
{ LookAndFeel::eWindowsTheme_Zune, L"zune" },
|
|
|
|
{ LookAndFeel::eWindowsTheme_Generic, L"generic" }
|
2010-10-10 00:53:45 +04:00
|
|
|
};
|
2013-07-01 20:02:29 +04:00
|
|
|
|
|
|
|
struct OperatingSystemVersionInfo {
|
2016-01-11 02:28:35 +03:00
|
|
|
LookAndFeel::OperatingSystemVersion id;
|
|
|
|
const wchar_t* name;
|
2013-07-01 20:02:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Os version identities used in the -moz-os-version media query.
|
|
|
|
const OperatingSystemVersionInfo osVersionStrings[] = {
|
2016-01-11 02:28:35 +03:00
|
|
|
{ LookAndFeel::eOperatingSystemVersion_Windows7, L"windows-win7" },
|
|
|
|
{ LookAndFeel::eOperatingSystemVersion_Windows8, L"windows-win8" },
|
|
|
|
{ LookAndFeel::eOperatingSystemVersion_Windows10, L"windows-win10" }
|
2013-07-01 20:02:29 +04:00
|
|
|
};
|
2010-10-10 00:53:45 +04:00
|
|
|
#endif
|
|
|
|
|
2018-01-15 17:33:25 +03:00
|
|
|
static nsPresContext*
|
|
|
|
GetPresContext(nsIDocument* aDocument)
|
|
|
|
{
|
|
|
|
nsIPresShell* presShell = aDocument->GetShell();
|
|
|
|
if (!presShell) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return presShell->GetPresContext();
|
|
|
|
}
|
|
|
|
|
2008-12-29 18:07:36 +03:00
|
|
|
// A helper for four features below
|
2008-12-04 19:09:53 +03:00
|
|
|
static nsSize
|
2018-01-15 17:33:25 +03:00
|
|
|
GetSize(nsIDocument* aDocument)
|
2008-12-04 19:09:53 +03:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
nsPresContext* pc = GetPresContext(aDocument);
|
|
|
|
|
|
|
|
// Per spec, return a 0x0 viewport if we're not being rendered. See:
|
|
|
|
//
|
|
|
|
// * https://github.com/w3c/csswg-drafts/issues/571
|
|
|
|
// * https://github.com/whatwg/html/issues/1813
|
|
|
|
//
|
|
|
|
if (!pc) {
|
|
|
|
return { };
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pc->IsRootPaginatedDocument()) {
|
2016-01-11 02:28:35 +03:00
|
|
|
// We want the page size, including unprintable areas and margins.
|
2018-01-15 17:33:25 +03:00
|
|
|
//
|
|
|
|
// FIXME(emilio, bug 1414600): Not quite!
|
|
|
|
return pc->GetPageSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
return pc->GetVisibleArea().Size();
|
2008-12-04 19:09:53 +03:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetWidth(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
nsSize size = GetSize(aDocument);
|
|
|
|
aResult.SetFloatValue(CSSPixel::FromAppUnits(size.width), eCSSUnit_Pixel);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetHeight(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
nsSize size = GetSize(aDocument);
|
|
|
|
aResult.SetFloatValue(CSSPixel::FromAppUnits(size.height), eCSSUnit_Pixel);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2018-01-15 17:33:25 +03:00
|
|
|
static bool
|
|
|
|
ShouldResistFingerprinting(nsIDocument* aDocument)
|
2008-07-26 20:14:49 +04:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
return nsContentUtils::ShouldResistFingerprinting(aDocument->GetDocShell());
|
2008-07-26 20:14:49 +04:00
|
|
|
}
|
|
|
|
|
2015-06-07 16:02:00 +03:00
|
|
|
static bool
|
2018-01-15 17:33:25 +03:00
|
|
|
IsDeviceSizePageSize(nsIDocument* aDocument)
|
2015-06-07 16:02:00 +03:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
nsIDocShell* docShell = aDocument->GetDocShell();
|
|
|
|
if (!docShell) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return docShell->GetDeviceSizeIsPageSize();
|
2015-06-07 16:02:00 +03:00
|
|
|
}
|
|
|
|
|
2008-12-04 19:09:53 +03:00
|
|
|
// A helper for three features below.
|
|
|
|
static nsSize
|
2018-01-15 17:33:25 +03:00
|
|
|
GetDeviceSize(nsIDocument* aDocument)
|
2008-12-04 19:09:53 +03:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
if (ShouldResistFingerprinting(aDocument) || IsDeviceSizePageSize(aDocument)) {
|
|
|
|
return GetSize(aDocument);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsPresContext* pc = GetPresContext(aDocument);
|
|
|
|
// NOTE(emilio): We should probably figure out how to return an appropriate
|
|
|
|
// device size here, though in a multi-screen world that makes no sense
|
|
|
|
// really.
|
|
|
|
if (!pc) {
|
|
|
|
return { };
|
|
|
|
}
|
2016-01-11 02:28:35 +03:00
|
|
|
|
2018-01-15 17:33:25 +03:00
|
|
|
if (pc->IsRootPaginatedDocument()) {
|
2016-01-11 02:28:35 +03:00
|
|
|
// We want the page size, including unprintable areas and margins.
|
|
|
|
// XXX The spec actually says we want the "page sheet size", but
|
|
|
|
// how is that different?
|
2018-01-15 17:33:25 +03:00
|
|
|
return pc->GetPageSize();
|
2016-01-11 02:28:35 +03:00
|
|
|
}
|
2018-01-15 17:33:25 +03:00
|
|
|
|
|
|
|
nsSize size;
|
|
|
|
pc->DeviceContext()->GetDeviceSurfaceDimensions(size.width, size.height);
|
2016-01-11 02:28:35 +03:00
|
|
|
return size;
|
2008-12-04 19:09:53 +03:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetDeviceWidth(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
nsSize size = GetDeviceSize(aDocument);
|
|
|
|
aResult.SetFloatValue(CSSPixel::FromAppUnits(size.width), eCSSUnit_Pixel);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetDeviceHeight(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
nsSize size = GetDeviceSize(aDocument);
|
|
|
|
aResult.SetFloatValue(CSSPixel::FromAppUnits(size.height), eCSSUnit_Pixel);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetOrientation(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
nsSize size = GetSize(aDocument);
|
|
|
|
// Per spec, square viewports should be 'portrait'
|
|
|
|
int32_t orientation = size.width > size.height
|
|
|
|
? NS_STYLE_ORIENTATION_LANDSCAPE : NS_STYLE_ORIENTATION_PORTRAIT;
|
2016-01-11 02:28:35 +03:00
|
|
|
aResult.SetIntValue(orientation, eCSSUnit_Enumerated);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetDeviceOrientation(nsIDocument* aDocument, const nsMediaFeature*,
|
2010-12-10 21:35:36 +03:00
|
|
|
nsCSSValue& aResult)
|
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
nsSize size = GetDeviceSize(aDocument);
|
|
|
|
// Per spec, square viewports should be 'portrait'
|
|
|
|
int32_t orientation = size.width > size.height
|
|
|
|
? NS_STYLE_ORIENTATION_LANDSCAPE : NS_STYLE_ORIENTATION_PORTRAIT;
|
2016-01-11 02:28:35 +03:00
|
|
|
aResult.SetIntValue(orientation, eCSSUnit_Enumerated);
|
2010-12-10 21:35:36 +03:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetIsResourceDocument(nsIDocument* aDocument, const nsMediaFeature*,
|
2011-09-24 12:28:54 +04:00
|
|
|
nsCSSValue& aResult)
|
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
aResult.SetIntValue(aDocument->IsResourceDoc() ? 1 : 0, eCSSUnit_Integer);
|
2011-09-24 12:28:54 +04:00
|
|
|
}
|
|
|
|
|
2008-12-04 19:09:53 +03:00
|
|
|
// Helper for two features below
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2008-12-04 19:09:53 +03:00
|
|
|
MakeArray(const nsSize& aSize, nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2016-01-11 02:28:35 +03:00
|
|
|
RefPtr<nsCSSValue::Array> a = nsCSSValue::Array::Create(2);
|
2008-07-26 20:14:48 +04:00
|
|
|
|
2016-01-11 02:28:35 +03:00
|
|
|
a->Item(0).SetIntValue(aSize.width, eCSSUnit_Integer);
|
|
|
|
a->Item(1).SetIntValue(aSize.height, eCSSUnit_Integer);
|
2008-07-26 20:14:48 +04:00
|
|
|
|
2016-01-11 02:28:35 +03:00
|
|
|
aResult.SetArrayValue(a, eCSSUnit_Array);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetAspectRatio(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
MakeArray(GetSize(aDocument), aResult);
|
2008-12-04 19:09:53 +03:00
|
|
|
}
|
2008-07-26 20:14:48 +04:00
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetDeviceAspectRatio(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-12-04 19:09:53 +03:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
MakeArray(GetDeviceSize(aDocument), aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsDeviceContext*
|
|
|
|
GetDeviceContextFor(nsIDocument* aDocument)
|
|
|
|
{
|
|
|
|
nsPresContext* pc = GetPresContext(aDocument);
|
|
|
|
if (!pc) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// It would be nice to call nsLayoutUtils::GetDeviceContextForScreenInfo here,
|
|
|
|
// except for two things: (1) it can flush, and flushing is bad here, and (2)
|
|
|
|
// it doesn't really get us consistency in multi-monitor situations *anyway*.
|
|
|
|
return pc->DeviceContext();
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetColor(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
// Use depth of 24 when resisting fingerprinting, or when we're not being
|
|
|
|
// rendered.
|
|
|
|
uint32_t depth = 24;
|
|
|
|
|
|
|
|
if (!ShouldResistFingerprinting(aDocument)) {
|
|
|
|
if (nsDeviceContext* dx = GetDeviceContextFor(aDocument)) {
|
|
|
|
// FIXME: On a monochrome device, return 0!
|
|
|
|
dx->GetDepth(depth);
|
|
|
|
}
|
2016-01-11 02:28:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// The spec says to use bits *per color component*, so divide by 3,
|
|
|
|
// and round down, since the spec says to use the smallest when the
|
|
|
|
// color components differ.
|
|
|
|
depth /= 3;
|
|
|
|
aResult.SetIntValue(int32_t(depth), eCSSUnit_Integer);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetColorIndex(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2016-01-11 02:28:35 +03:00
|
|
|
// We should return zero if the device does not use a color lookup
|
|
|
|
// table. Stuart says that our handling of displays with 8-bit
|
|
|
|
// color is bad enough that we never change the lookup table to
|
|
|
|
// match what we're trying to display, so perhaps we should always
|
|
|
|
// return zero. Given that there isn't any better information
|
|
|
|
// exposed, we don't have much other choice.
|
|
|
|
aResult.SetIntValue(0, eCSSUnit_Integer);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetMonochrome(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2016-01-11 02:28:35 +03:00
|
|
|
// For color devices we should return 0.
|
|
|
|
// FIXME: On a monochrome device, return the actual color depth, not
|
|
|
|
// 0!
|
|
|
|
aResult.SetIntValue(0, eCSSUnit_Integer);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetResolution(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2017-09-28 02:53:27 +03:00
|
|
|
// We're returning resolution in terms of device pixels per css pixel, since
|
|
|
|
// that is the preferred unit for media queries of resolution. This avoids
|
|
|
|
// introducing precision error from conversion to and from less-used
|
|
|
|
// physical units like inches.
|
|
|
|
|
2018-01-15 17:33:25 +03:00
|
|
|
float dppx = 1.;
|
2015-06-07 16:02:00 +03:00
|
|
|
|
2018-01-15 17:33:25 +03:00
|
|
|
if (nsDeviceContext* dx = GetDeviceContextFor(aDocument)) {
|
|
|
|
if (ShouldResistFingerprinting(aDocument)) {
|
|
|
|
dppx = dx->GetFullZoom();
|
|
|
|
} else {
|
|
|
|
// Get the actual device pixel ratio, which also takes zoom into account.
|
|
|
|
dppx =
|
|
|
|
float(nsPresContext::AppUnitsPerCSSPixel()) / dx->AppUnitsPerDevPixel();
|
|
|
|
}
|
2016-01-11 02:28:35 +03:00
|
|
|
}
|
2015-06-07 16:02:00 +03:00
|
|
|
|
2017-09-28 02:53:27 +03:00
|
|
|
aResult.SetFloatValue(dppx, eCSSUnit_Pixel);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetScan(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2016-01-11 02:28:35 +03:00
|
|
|
// Since Gecko doesn't support the 'tv' media type, the 'scan'
|
|
|
|
// feature is never present.
|
|
|
|
aResult.Reset();
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2018-01-15 17:33:25 +03:00
|
|
|
static nsIDocument*
|
|
|
|
TopDocument(nsIDocument* aDocument)
|
2016-02-23 19:10:00 +03:00
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
nsIDocument* current = aDocument;
|
|
|
|
while (nsIDocument* parent = current->GetParentDocument()) {
|
|
|
|
current = parent;
|
2017-08-09 16:54:06 +03:00
|
|
|
}
|
2018-01-15 17:33:25 +03:00
|
|
|
return current;
|
|
|
|
}
|
2017-08-09 16:54:06 +03:00
|
|
|
|
2018-01-15 17:33:25 +03:00
|
|
|
static void
|
|
|
|
GetDisplayMode(nsIDocument* aDocument, const nsMediaFeature*,
|
|
|
|
nsCSSValue& aResult)
|
|
|
|
{
|
|
|
|
nsIDocument* rootDocument = TopDocument(aDocument);
|
2017-08-09 16:54:06 +03:00
|
|
|
|
2018-01-15 17:33:25 +03:00
|
|
|
nsCOMPtr<nsISupports> container = rootDocument->GetContainer();
|
|
|
|
if (nsCOMPtr<nsIBaseWindow> baseWindow = do_QueryInterface(container)) {
|
2017-08-09 16:54:06 +03:00
|
|
|
nsCOMPtr<nsIWidget> mainWidget;
|
|
|
|
baseWindow->GetMainWidget(getter_AddRefs(mainWidget));
|
2018-01-15 17:33:25 +03:00
|
|
|
if (mainWidget && mainWidget->SizeMode() == nsSizeMode_Fullscreen) {
|
2017-08-09 16:54:06 +03:00
|
|
|
aResult.SetIntValue(NS_STYLE_DISPLAY_MODE_FULLSCREEN, eCSSUnit_Enumerated);
|
|
|
|
return;
|
|
|
|
}
|
2016-02-23 19:10:00 +03:00
|
|
|
}
|
2017-08-09 16:54:06 +03:00
|
|
|
|
|
|
|
static_assert(nsIDocShell::DISPLAY_MODE_BROWSER == NS_STYLE_DISPLAY_MODE_BROWSER &&
|
|
|
|
nsIDocShell::DISPLAY_MODE_MINIMAL_UI == NS_STYLE_DISPLAY_MODE_MINIMAL_UI &&
|
|
|
|
nsIDocShell::DISPLAY_MODE_STANDALONE == NS_STYLE_DISPLAY_MODE_STANDALONE &&
|
|
|
|
nsIDocShell::DISPLAY_MODE_FULLSCREEN == NS_STYLE_DISPLAY_MODE_FULLSCREEN,
|
|
|
|
"nsIDocShell display modes must mach nsStyleConsts.h");
|
|
|
|
|
|
|
|
uint32_t displayMode = NS_STYLE_DISPLAY_MODE_BROWSER;
|
2018-01-15 17:33:25 +03:00
|
|
|
if (nsIDocShell* docShell = rootDocument->GetDocShell()) {
|
2017-08-09 16:54:06 +03:00
|
|
|
docShell->GetDisplayMode(&displayMode);
|
2016-02-23 19:10:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
aResult.SetIntValue(displayMode, eCSSUnit_Enumerated);
|
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetGrid(nsIDocument* aDocument, const nsMediaFeature*,
|
2009-10-16 04:23:18 +04:00
|
|
|
nsCSSValue& aResult)
|
2008-07-26 20:14:48 +04:00
|
|
|
{
|
2016-01-11 02:28:35 +03:00
|
|
|
// Gecko doesn't support grid devices (e.g., ttys), so the 'grid'
|
|
|
|
// feature is always 0.
|
|
|
|
aResult.SetIntValue(0, eCSSUnit_Integer);
|
2008-07-26 20:14:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetDevicePixelRatio(nsIDocument* aDocument, const nsMediaFeature*,
|
2010-09-11 00:27:52 +04:00
|
|
|
nsCSSValue& aResult)
|
|
|
|
{
|
2018-01-15 17:33:25 +03:00
|
|
|
if (ShouldResistFingerprinting(aDocument)) {
|
2016-01-11 02:28:35 +03:00
|
|
|
aResult.SetFloatValue(1.0, eCSSUnit_Number);
|
2018-01-15 17:33:25 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIPresShell* presShell = aDocument->GetShell();
|
|
|
|
if (!presShell) {
|
|
|
|
aResult.SetFloatValue(1.0, eCSSUnit_Number);
|
|
|
|
return;
|
2016-01-11 02:28:35 +03:00
|
|
|
}
|
2018-01-15 17:33:25 +03:00
|
|
|
|
|
|
|
nsPresContext* pc = presShell->GetPresContext();
|
|
|
|
if (!pc) {
|
|
|
|
aResult.SetFloatValue(1.0, eCSSUnit_Number);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
float ratio = pc->CSSPixelsToDevPixels(1.0f);
|
|
|
|
aResult.SetFloatValue(ratio, eCSSUnit_Number);
|
2010-09-11 00:27:52 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetTransform3d(nsIDocument* aDocument, const nsMediaFeature*,
|
2016-01-18 20:24:44 +03:00
|
|
|
nsCSSValue& aResult)
|
|
|
|
{
|
|
|
|
// Gecko supports 3d transforms, so this feature is always 1.
|
|
|
|
aResult.SetIntValue(1, eCSSUnit_Integer);
|
|
|
|
}
|
|
|
|
|
2017-11-17 10:35:26 +03:00
|
|
|
static bool
|
|
|
|
HasSystemMetric(nsAtom* aMetric)
|
|
|
|
{
|
|
|
|
nsMediaFeatures::InitSystemMetrics();
|
|
|
|
return sSystemMetrics->IndexOf(aMetric) != sSystemMetrics->NoIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
static uint8_t
|
|
|
|
GetWindowsThemeIdentifier()
|
|
|
|
{
|
|
|
|
nsMediaFeatures::InitSystemMetrics();
|
|
|
|
return sWinThemeId;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetSystemMetric(nsIDocument* aDocument, const nsMediaFeature* aFeature,
|
2009-10-16 04:23:19 +04:00
|
|
|
nsCSSValue& aResult)
|
|
|
|
{
|
2016-01-11 02:28:35 +03:00
|
|
|
aResult.Reset();
|
2017-10-19 16:06:38 +03:00
|
|
|
|
|
|
|
const bool isAccessibleFromContentPages =
|
|
|
|
!(aFeature->mReqFlags & nsMediaFeature::eUserAgentAndChromeOnly);
|
|
|
|
|
2017-10-19 17:23:45 +03:00
|
|
|
MOZ_ASSERT(!isAccessibleFromContentPages ||
|
|
|
|
*aFeature->mName == nsGkAtoms::_moz_touch_enabled);
|
|
|
|
|
2018-01-15 17:33:25 +03:00
|
|
|
if (isAccessibleFromContentPages && ShouldResistFingerprinting(aDocument)) {
|
2016-01-11 02:28:35 +03:00
|
|
|
// If "privacy.resistFingerprinting" is enabled, then we simply don't
|
2017-10-19 16:06:38 +03:00
|
|
|
// return any system-backed media feature values. (No spoofed values
|
|
|
|
// returned.)
|
2017-01-18 16:33:24 +03:00
|
|
|
return;
|
2016-01-11 02:28:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(aFeature->mValueType == nsMediaFeature::eBoolInteger,
|
|
|
|
"unexpected type");
|
2017-10-19 17:23:45 +03:00
|
|
|
|
2017-10-19 16:06:38 +03:00
|
|
|
nsAtom* metricAtom = *aFeature->mData.mMetric;
|
2017-11-17 10:35:26 +03:00
|
|
|
bool hasMetric = HasSystemMetric(metricAtom);
|
2016-01-11 02:28:35 +03:00
|
|
|
aResult.SetIntValue(hasMetric ? 1 : 0, eCSSUnit_Integer);
|
2009-10-16 04:23:19 +04:00
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetWindowsTheme(nsIDocument* aDocument, const nsMediaFeature* aFeature,
|
2010-10-10 00:53:45 +04:00
|
|
|
nsCSSValue& aResult)
|
|
|
|
{
|
2016-01-11 02:28:35 +03:00
|
|
|
aResult.Reset();
|
2017-10-19 17:23:45 +03:00
|
|
|
|
|
|
|
MOZ_ASSERT(aFeature->mReqFlags & nsMediaFeature::eUserAgentAndChromeOnly);
|
2018-01-15 17:33:25 +03:00
|
|
|
if (ShouldResistFingerprinting(aDocument)) {
|
2017-01-18 16:33:24 +03:00
|
|
|
return;
|
2016-01-11 02:28:35 +03:00
|
|
|
}
|
2015-06-07 16:02:00 +03:00
|
|
|
|
2010-10-10 00:53:45 +04:00
|
|
|
#ifdef XP_WIN
|
2017-11-17 10:35:26 +03:00
|
|
|
uint8_t windowsThemeId = GetWindowsThemeIdentifier();
|
2016-01-11 02:28:35 +03:00
|
|
|
|
|
|
|
// Classic mode should fail to match.
|
|
|
|
if (windowsThemeId == LookAndFeel::eWindowsTheme_Classic)
|
2017-01-18 16:33:24 +03:00
|
|
|
return;
|
2016-01-11 02:28:35 +03:00
|
|
|
|
|
|
|
// Look up the appropriate theme string
|
|
|
|
for (size_t i = 0; i < ArrayLength(themeStrings); ++i) {
|
|
|
|
if (windowsThemeId == themeStrings[i].id) {
|
|
|
|
aResult.SetStringValue(nsDependentString(themeStrings[i].name),
|
|
|
|
eCSSUnit_Ident);
|
|
|
|
break;
|
2010-10-10 00:53:45 +04:00
|
|
|
}
|
2016-01-11 02:28:35 +03:00
|
|
|
}
|
2010-10-10 00:53:45 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetOperatingSystemVersion(nsIDocument* aDocument, const nsMediaFeature* aFeature,
|
2013-07-01 20:02:29 +04:00
|
|
|
nsCSSValue& aResult)
|
|
|
|
{
|
2016-01-11 02:28:35 +03:00
|
|
|
aResult.Reset();
|
2017-10-19 17:23:45 +03:00
|
|
|
|
|
|
|
MOZ_ASSERT(aFeature->mReqFlags & nsMediaFeature::eUserAgentAndChromeOnly);
|
2018-01-15 17:33:25 +03:00
|
|
|
if (ShouldResistFingerprinting(aDocument)) {
|
2017-01-18 16:33:24 +03:00
|
|
|
return;
|
2016-01-11 02:28:35 +03:00
|
|
|
}
|
2015-06-07 16:02:00 +03:00
|
|
|
|
2013-07-01 20:02:29 +04:00
|
|
|
#ifdef XP_WIN
|
2016-01-11 02:28:35 +03:00
|
|
|
int32_t metricResult;
|
|
|
|
if (NS_SUCCEEDED(
|
|
|
|
LookAndFeel::GetInt(LookAndFeel::eIntID_OperatingSystemVersionIdentifier,
|
|
|
|
&metricResult))) {
|
|
|
|
for (size_t i = 0; i < ArrayLength(osVersionStrings); ++i) {
|
|
|
|
if (metricResult == osVersionStrings[i].id) {
|
|
|
|
aResult.SetStringValue(nsDependentString(osVersionStrings[i].name),
|
|
|
|
eCSSUnit_Ident);
|
|
|
|
break;
|
|
|
|
}
|
2013-07-01 20:02:29 +04:00
|
|
|
}
|
2016-01-11 02:28:35 +03:00
|
|
|
}
|
2013-07-01 20:02:29 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-01-18 16:33:24 +03:00
|
|
|
static void
|
2018-01-15 17:33:25 +03:00
|
|
|
GetIsGlyph(nsIDocument* aDocument, const nsMediaFeature* aFeature,
|
|
|
|
nsCSSValue& aResult)
|
2012-09-06 08:58:44 +04:00
|
|
|
{
|
2017-10-19 17:23:45 +03:00
|
|
|
MOZ_ASSERT(aFeature->mReqFlags & nsMediaFeature::eUserAgentAndChromeOnly);
|
2018-01-15 17:33:25 +03:00
|
|
|
aResult.SetIntValue(aDocument->IsSVGGlyphsDocument() ? 1 : 0, eCSSUnit_Integer);
|
2012-09-06 08:58:44 +04:00
|
|
|
}
|
|
|
|
|
2017-11-17 10:35:26 +03:00
|
|
|
/* static */ void
|
|
|
|
nsMediaFeatures::InitSystemMetrics()
|
|
|
|
{
|
|
|
|
if (sSystemMetrics)
|
|
|
|
return;
|
|
|
|
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
sSystemMetrics = new nsTArray<RefPtr<nsAtom>>;
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* ANY METRICS ADDED HERE SHOULD ALSO BE ADDED AS MEDIA QUERIES BELOW *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
int32_t metricResult =
|
|
|
|
LookAndFeel::GetInt(LookAndFeel::eIntID_ScrollArrowStyle);
|
|
|
|
if (metricResult & LookAndFeel::eScrollArrow_StartBackward) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::scrollbar_start_backward);
|
|
|
|
}
|
|
|
|
if (metricResult & LookAndFeel::eScrollArrow_StartForward) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::scrollbar_start_forward);
|
|
|
|
}
|
|
|
|
if (metricResult & LookAndFeel::eScrollArrow_EndBackward) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::scrollbar_end_backward);
|
|
|
|
}
|
|
|
|
if (metricResult & LookAndFeel::eScrollArrow_EndForward) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::scrollbar_end_forward);
|
|
|
|
}
|
|
|
|
|
|
|
|
metricResult =
|
|
|
|
LookAndFeel::GetInt(LookAndFeel::eIntID_ScrollSliderStyle);
|
|
|
|
if (metricResult != LookAndFeel::eScrollThumbStyle_Normal) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::scrollbar_thumb_proportional);
|
|
|
|
}
|
|
|
|
|
|
|
|
metricResult =
|
|
|
|
LookAndFeel::GetInt(LookAndFeel::eIntID_UseOverlayScrollbars);
|
|
|
|
if (metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::overlay_scrollbars);
|
|
|
|
}
|
|
|
|
|
|
|
|
metricResult =
|
|
|
|
LookAndFeel::GetInt(LookAndFeel::eIntID_MenuBarDrag);
|
|
|
|
if (metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::menubar_drag);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv =
|
|
|
|
LookAndFeel::GetInt(LookAndFeel::eIntID_WindowsDefaultTheme, &metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_default_theme);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_MacGraphiteTheme, &metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::mac_graphite_theme);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_MacYosemiteTheme, &metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::mac_yosemite_theme);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_WindowsAccentColorInTitlebar, &metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_accent_color_in_titlebar);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_DWMCompositor, &metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_compositor);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_WindowsGlass, &metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_glass);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_WindowsClassic, &metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_classic);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_TouchEnabled, &metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::touch_enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_SwipeAnimationEnabled,
|
|
|
|
&metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::swipe_animation_enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_GTKCSDAvailable,
|
|
|
|
&metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::gtk_csd_available);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_GTKCSDMinimizeButton,
|
|
|
|
&metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::gtk_csd_minimize_button);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_GTKCSDMaximizeButton,
|
|
|
|
&metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::gtk_csd_maximize_button);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = LookAndFeel::GetInt(LookAndFeel::eIntID_GTKCSDCloseButton,
|
|
|
|
&metricResult);
|
|
|
|
if (NS_SUCCEEDED(rv) && metricResult) {
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::gtk_csd_close_button);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
if (NS_SUCCEEDED(
|
|
|
|
LookAndFeel::GetInt(LookAndFeel::eIntID_WindowsThemeIdentifier,
|
|
|
|
&metricResult))) {
|
|
|
|
sWinThemeId = metricResult;
|
|
|
|
switch (metricResult) {
|
|
|
|
case LookAndFeel::eWindowsTheme_Aero:
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_theme_aero);
|
|
|
|
break;
|
|
|
|
case LookAndFeel::eWindowsTheme_AeroLite:
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_theme_aero_lite);
|
|
|
|
break;
|
|
|
|
case LookAndFeel::eWindowsTheme_LunaBlue:
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_theme_luna_blue);
|
|
|
|
break;
|
|
|
|
case LookAndFeel::eWindowsTheme_LunaOlive:
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_theme_luna_olive);
|
|
|
|
break;
|
|
|
|
case LookAndFeel::eWindowsTheme_LunaSilver:
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_theme_luna_silver);
|
|
|
|
break;
|
|
|
|
case LookAndFeel::eWindowsTheme_Royale:
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_theme_royale);
|
|
|
|
break;
|
|
|
|
case LookAndFeel::eWindowsTheme_Zune:
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_theme_zune);
|
|
|
|
break;
|
|
|
|
case LookAndFeel::eWindowsTheme_Generic:
|
|
|
|
sSystemMetrics->AppendElement(nsGkAtoms::windows_theme_generic);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
nsMediaFeatures::FreeSystemMetrics()
|
|
|
|
{
|
|
|
|
delete sSystemMetrics;
|
|
|
|
sSystemMetrics = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
nsMediaFeatures::Shutdown()
|
|
|
|
{
|
|
|
|
FreeSystemMetrics();
|
|
|
|
}
|
|
|
|
|
2008-07-26 20:14:48 +04:00
|
|
|
/*
|
|
|
|
* Adding new media features requires (1) adding the new feature to this
|
|
|
|
* array, with appropriate entries (and potentially any new code needed
|
|
|
|
* to support new types in these entries and (2) ensuring that either
|
|
|
|
* nsPresContext::MediaFeatureValuesChanged or
|
|
|
|
* nsPresContext::PostMediaFeatureValuesChangedEvent is called when the
|
|
|
|
* value that would be returned by the entry's mGetter changes.
|
|
|
|
*/
|
|
|
|
|
2008-07-26 20:14:48 +04:00
|
|
|
/* static */ const nsMediaFeature
|
|
|
|
nsMediaFeatures::features[] = {
|
2016-01-11 02:28:35 +03:00
|
|
|
{
|
|
|
|
&nsGkAtoms::width,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eLength,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetWidth
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::height,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eLength,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetHeight
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::deviceWidth,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eLength,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetDeviceWidth
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::deviceHeight,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eLength,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetDeviceHeight
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::orientation,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eEnumerated,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ kOrientationKeywords },
|
|
|
|
GetOrientation
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::aspectRatio,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eIntRatio,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetAspectRatio
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::deviceAspectRatio,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eIntRatio,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetDeviceAspectRatio
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::color,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eInteger,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetColor
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::colorIndex,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eInteger,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetColorIndex
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::monochrome,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eInteger,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetMonochrome
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::resolution,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eResolution,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetResolution
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::scan,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eEnumerated,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ kScanKeywords },
|
|
|
|
GetScan
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::grid,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetGrid
|
|
|
|
},
|
2016-02-23 19:10:00 +03:00
|
|
|
{
|
|
|
|
&nsGkAtoms::displayMode,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eEnumerated,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ kDisplayModeKeywords },
|
|
|
|
GetDisplayMode
|
|
|
|
},
|
2016-01-11 02:28:35 +03:00
|
|
|
|
|
|
|
// Webkit extensions that we support for de-facto web compatibility
|
2016-01-18 20:24:16 +03:00
|
|
|
// -webkit-{min|max}-device-pixel-ratio (controlled with its own pref):
|
2016-01-11 02:28:35 +03:00
|
|
|
{
|
|
|
|
&nsGkAtoms::devicePixelRatio,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eFloat,
|
2016-01-18 20:24:16 +03:00
|
|
|
nsMediaFeature::eHasWebkitPrefix |
|
|
|
|
nsMediaFeature::eWebkitDevicePixelRatioPrefEnabled,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ nullptr },
|
|
|
|
GetDevicePixelRatio
|
|
|
|
},
|
2016-01-18 20:24:44 +03:00
|
|
|
// -webkit-transform-3d:
|
|
|
|
{
|
|
|
|
&nsGkAtoms::transform_3d,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
|
|
|
nsMediaFeature::eHasWebkitPrefix,
|
|
|
|
{ nullptr },
|
|
|
|
GetTransform3d
|
|
|
|
},
|
2016-01-11 02:28:35 +03:00
|
|
|
|
|
|
|
// Mozilla extensions
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_device_pixel_ratio,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eFloat,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetDevicePixelRatio
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_device_orientation,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eEnumerated,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ kOrientationKeywords },
|
|
|
|
GetDeviceOrientation
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_is_resource_document,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
GetIsResourceDocument
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_scrollbar_start_backward,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-16 10:24:24 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::scrollbar_start_backward },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_scrollbar_start_forward,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-16 10:24:24 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::scrollbar_start_forward },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_scrollbar_end_backward,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-16 10:24:24 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::scrollbar_end_backward },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_scrollbar_end_forward,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-16 10:24:24 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::scrollbar_end_forward },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_scrollbar_thumb_proportional,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-16 10:24:24 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::scrollbar_thumb_proportional },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_overlay_scrollbars,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::overlay_scrollbars },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_windows_default_theme,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::windows_default_theme },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_mac_graphite_theme,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::mac_graphite_theme },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_mac_yosemite_theme,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::mac_yosemite_theme },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
2017-06-08 16:49:21 +03:00
|
|
|
{
|
2017-07-19 17:38:49 +03:00
|
|
|
&nsGkAtoms::_moz_windows_accent_color_in_titlebar,
|
2017-06-08 16:49:21 +03:00
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2017-07-19 17:38:49 +03:00
|
|
|
{ &nsGkAtoms::windows_accent_color_in_titlebar },
|
2017-06-08 16:49:21 +03:00
|
|
|
GetSystemMetric
|
|
|
|
},
|
2016-01-11 02:28:35 +03:00
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_windows_compositor,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::windows_compositor },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_windows_classic,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::windows_classic },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_windows_glass,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::windows_glass },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_touch_enabled,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
// FIXME(emilio): Restrict (or remove?) when bug 1035774 lands.
|
2016-01-11 02:28:35 +03:00
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ &nsGkAtoms::touch_enabled },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_menubar_drag,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::menubar_drag },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_windows_theme,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eIdent,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ nullptr },
|
|
|
|
GetWindowsTheme
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_os_version,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eIdent,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ nullptr },
|
|
|
|
GetOperatingSystemVersion
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_swipe_animation_enabled,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ &nsGkAtoms::swipe_animation_enabled },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
|
2017-10-31 16:29:17 +03:00
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_gtk_csd_available,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
|
|
|
{ &nsGkAtoms::gtk_csd_available },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_gtk_csd_minimize_button,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
|
|
|
{ &nsGkAtoms::gtk_csd_minimize_button },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_gtk_csd_maximize_button,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
|
|
|
{ &nsGkAtoms::gtk_csd_maximize_button },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_gtk_csd_close_button,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
|
|
|
{ &nsGkAtoms::gtk_csd_close_button },
|
|
|
|
GetSystemMetric
|
|
|
|
},
|
|
|
|
|
2016-01-11 02:28:35 +03:00
|
|
|
// Internal -moz-is-glyph media feature: applies only inside SVG glyphs.
|
|
|
|
// Internal because it is really only useful in the user agent anyway
|
|
|
|
// and therefore not worth standardizing.
|
|
|
|
{
|
|
|
|
&nsGkAtoms::_moz_is_glyph,
|
|
|
|
nsMediaFeature::eMinMaxNotAllowed,
|
|
|
|
nsMediaFeature::eBoolInteger,
|
2017-10-19 17:23:45 +03:00
|
|
|
nsMediaFeature::eUserAgentAndChromeOnly,
|
2016-01-11 02:28:35 +03:00
|
|
|
{ nullptr },
|
|
|
|
GetIsGlyph
|
|
|
|
},
|
|
|
|
// Null-mName terminator:
|
|
|
|
{
|
|
|
|
nullptr,
|
|
|
|
nsMediaFeature::eMinMaxAllowed,
|
|
|
|
nsMediaFeature::eInteger,
|
|
|
|
nsMediaFeature::eNoRequirements,
|
|
|
|
{ nullptr },
|
|
|
|
nullptr
|
|
|
|
},
|
2008-07-26 20:14:48 +04:00
|
|
|
};
|