2001-09-25 05:32:19 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2001-02-19 15:10:13 +03:00
|
|
|
#ifndef nsStyleUtil_h___
|
|
|
|
#define nsStyleUtil_h___
|
|
|
|
|
|
|
|
#include "nsCoord.h"
|
2016-08-17 04:37:48 +03:00
|
|
|
#include "nsCSSPropertyID.h"
|
2013-11-22 18:08:35 +04:00
|
|
|
#include "nsString.h"
|
2014-03-15 23:00:17 +04:00
|
|
|
#include "nsTArrayForwardDeclare.h"
|
2014-06-06 10:09:23 +04:00
|
|
|
#include "gfxFontFamilyList.h"
|
2015-09-29 05:20:14 +03:00
|
|
|
#include "nsStyleStruct.h"
|
2015-11-28 03:56:33 +03:00
|
|
|
#include "nsCRT.h"
|
2001-02-19 15:10:13 +03:00
|
|
|
|
2013-03-03 04:31:48 +04:00
|
|
|
class nsCSSValue;
|
2010-04-11 00:10:12 +04:00
|
|
|
class nsStringComparator;
|
2013-08-29 02:39:06 +04:00
|
|
|
class nsStyleCoord;
|
2010-04-11 00:10:12 +04:00
|
|
|
class nsIContent;
|
2013-09-16 05:06:52 +04:00
|
|
|
class nsIPrincipal;
|
|
|
|
class nsIURI;
|
2013-03-03 04:31:48 +04:00
|
|
|
struct gfxFontFeature;
|
2013-09-16 05:06:52 +04:00
|
|
|
struct gfxAlternateValue;
|
2014-06-19 04:57:51 +04:00
|
|
|
struct nsCSSValueList;
|
2001-02-19 15:10:13 +03:00
|
|
|
|
|
|
|
// Style utility functions
|
|
|
|
class nsStyleUtil {
|
|
|
|
public:
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool DashMatchCompare(const nsAString& aAttributeValue,
|
2004-08-24 01:10:39 +04:00
|
|
|
const nsAString& aSelectorValue,
|
|
|
|
const nsStringComparator& aComparator);
|
2012-11-17 06:53:38 +04:00
|
|
|
|
2016-06-30 23:37:08 +03:00
|
|
|
static bool ValueIncludes(const nsSubstring& aValueList,
|
|
|
|
const nsSubstring& aValue,
|
|
|
|
const nsStringComparator& aComparator);
|
|
|
|
|
2012-11-17 06:53:38 +04:00
|
|
|
// Append a quoted (with 'quoteChar') and escaped version of aString
|
|
|
|
// to aResult. 'quoteChar' must be ' or ".
|
|
|
|
static void AppendEscapedCSSString(const nsAString& aString,
|
|
|
|
nsAString& aResult,
|
2014-01-04 19:02:17 +04:00
|
|
|
char16_t quoteChar = '"');
|
2012-11-17 06:53:38 +04:00
|
|
|
|
2010-02-04 23:49:29 +03:00
|
|
|
// Append the identifier given by |aIdent| to |aResult|, with
|
|
|
|
// appropriate escaping so that it can be reparsed to the same
|
2016-01-05 23:05:23 +03:00
|
|
|
// identifier. An exception is if aIdent contains U+0000, which
|
|
|
|
// will be escaped as U+FFFD and then reparsed back to U+FFFD.
|
|
|
|
static void AppendEscapedCSSIdent(const nsAString& aIdent,
|
2010-02-04 23:49:29 +03:00
|
|
|
nsAString& aResult);
|
2005-01-30 21:01:57 +03:00
|
|
|
|
2014-06-06 10:09:23 +04:00
|
|
|
static void
|
|
|
|
AppendEscapedCSSFontFamilyList(const mozilla::FontFamilyList& aFamilyList,
|
|
|
|
nsAString& aResult);
|
|
|
|
|
2009-10-22 01:57:57 +04:00
|
|
|
// Append a bitmask-valued property's value(s) (space-separated) to aResult.
|
2016-08-17 04:37:48 +03:00
|
|
|
static void AppendBitmaskCSSValue(nsCSSPropertyID aProperty,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aMaskedValue,
|
|
|
|
int32_t aFirstMask,
|
|
|
|
int32_t aLastMask,
|
2009-10-22 01:57:57 +04:00
|
|
|
nsAString& aResult);
|
|
|
|
|
2013-08-29 02:39:06 +04:00
|
|
|
static void AppendAngleValue(const nsStyleCoord& aValue, nsAString& aResult);
|
|
|
|
|
2013-01-13 03:27:53 +04:00
|
|
|
static void AppendPaintOrderValue(uint8_t aValue, nsAString& aResult);
|
|
|
|
|
2016-12-03 13:58:44 +03:00
|
|
|
static void AppendFontTagAsString(uint32_t aTag, nsAString& aResult);
|
|
|
|
|
2012-04-26 10:24:26 +04:00
|
|
|
static void AppendFontFeatureSettings(const nsTArray<gfxFontFeature>& aFeatures,
|
|
|
|
nsAString& aResult);
|
|
|
|
|
|
|
|
static void AppendFontFeatureSettings(const nsCSSValue& src,
|
|
|
|
nsAString& aResult);
|
|
|
|
|
2016-12-03 15:18:36 +03:00
|
|
|
static void AppendFontVariationSettings(const nsTArray<gfxFontVariation>& aVariations,
|
|
|
|
nsAString& aResult);
|
|
|
|
|
|
|
|
static void AppendFontVariationSettings(const nsCSSValue& src,
|
|
|
|
nsAString& aResult);
|
|
|
|
|
2014-07-04 05:19:33 +04:00
|
|
|
static void AppendUnicodeRange(const nsCSSValue& aValue, nsAString& aResult);
|
|
|
|
|
2013-11-21 05:00:57 +04:00
|
|
|
static void AppendCSSNumber(float aNumber, nsAString& aResult)
|
|
|
|
{
|
|
|
|
aResult.AppendFloat(aNumber);
|
|
|
|
}
|
|
|
|
|
2015-09-29 05:20:14 +03:00
|
|
|
static void AppendStepsTimingFunction(nsTimingFunction::Type aType,
|
|
|
|
uint32_t aSteps,
|
|
|
|
nsAString& aResult);
|
2017-02-24 09:50:08 +03:00
|
|
|
static void AppendFramesTimingFunction(uint32_t aFrames,
|
|
|
|
nsAString& aResult);
|
2015-09-29 05:20:14 +03:00
|
|
|
static void AppendCubicBezierTimingFunction(float aX1, float aY1,
|
|
|
|
float aX2, float aY2,
|
|
|
|
nsAString& aResult);
|
2015-09-29 05:20:14 +03:00
|
|
|
static void AppendCubicBezierKeywordTimingFunction(
|
|
|
|
nsTimingFunction::Type aType,
|
|
|
|
nsAString& aResult);
|
2015-09-29 05:20:14 +03:00
|
|
|
|
2014-09-22 04:32:58 +04:00
|
|
|
static void AppendSerializedFontSrc(const nsCSSValue& aValue,
|
|
|
|
nsAString& aResult);
|
|
|
|
|
2013-05-20 06:59:20 +04:00
|
|
|
// convert bitmask value to keyword name for a functional alternate
|
|
|
|
static void GetFunctionalAlternatesName(int32_t aFeature,
|
|
|
|
nsAString& aFeatureName);
|
|
|
|
|
|
|
|
// Append functional font-variant-alternates values to string
|
|
|
|
static void
|
|
|
|
SerializeFunctionalAlternates(const nsTArray<gfxAlternateValue>& aAlternates,
|
|
|
|
nsAString& aResult);
|
|
|
|
|
|
|
|
// List of functional font-variant-alternates values to feature/value pairs
|
|
|
|
static void
|
|
|
|
ComputeFunctionalAlternates(const nsCSSValueList* aList,
|
|
|
|
nsTArray<gfxAlternateValue>& aAlternateValues);
|
|
|
|
|
2007-03-08 21:44:45 +03:00
|
|
|
/*
|
|
|
|
* Convert an author-provided floating point number to an integer (0
|
|
|
|
* ... 255) appropriate for use in the alpha component of a color.
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
static uint8_t FloatToColorComponent(float aAlpha)
|
2007-03-08 21:44:45 +03:00
|
|
|
{
|
|
|
|
NS_ASSERTION(0.0 <= aAlpha && aAlpha <= 1.0, "out of range");
|
|
|
|
return NSToIntRound(aAlpha * 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert the alpha component of an nscolor (0 ... 255) to the
|
|
|
|
* floating point number with the least accurate *decimal*
|
|
|
|
* representation that is converted to that color.
|
|
|
|
*
|
|
|
|
* Should be used only by serialization code.
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
static float ColorComponentToFloat(uint8_t aAlpha);
|
2007-03-08 21:44:45 +03:00
|
|
|
|
2008-02-19 09:17:07 +03:00
|
|
|
/*
|
|
|
|
* Does this child count as significant for selector matching?
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool IsSignificantChild(nsIContent* aChild,
|
|
|
|
bool aTextIsSignificant,
|
|
|
|
bool aWhitespaceIsSignificant);
|
2017-03-17 00:10:22 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Thread-safe version of IsSignificantChild()
|
|
|
|
*/
|
|
|
|
static bool ThreadSafeIsSignificantChild(const nsIContent* aChild,
|
|
|
|
bool aTextIsSignificant,
|
|
|
|
bool aWhitespaceIsSignificant);
|
2014-11-15 03:45:23 +03:00
|
|
|
/**
|
|
|
|
* Returns true if our object-fit & object-position properties might cause
|
|
|
|
* a replaced element's contents to overflow its content-box (requiring
|
|
|
|
* clipping), or false if we can be sure that this won't happen.
|
|
|
|
*
|
|
|
|
* This lets us optimize by skipping clipping when we can tell it's
|
|
|
|
* unnecessary (particularly with the default values of these properties).
|
|
|
|
*
|
|
|
|
* @param aStylePos The nsStylePosition whose object-fit & object-position
|
|
|
|
* properties should be checked for potential overflow.
|
|
|
|
* @return false if we can be sure that the object-fit & object-position
|
|
|
|
* properties on 'aStylePos' cannot cause a replaced element's
|
|
|
|
* contents to overflow its content-box. Otherwise (if overflow is
|
|
|
|
* is possible), returns true.
|
|
|
|
*/
|
|
|
|
static bool ObjectPropsMightCauseOverflow(const nsStylePosition* aStylePos);
|
|
|
|
|
2012-08-30 21:58:24 +04:00
|
|
|
/*
|
|
|
|
* Does this principal have a CSP that blocks the application of
|
2013-11-09 03:44:39 +04:00
|
|
|
* inline styles? Returns false if application of the style should
|
2012-08-30 21:58:24 +04:00
|
|
|
* be blocked.
|
|
|
|
*
|
2013-11-09 03:44:39 +04:00
|
|
|
* @param aContent
|
|
|
|
* The <style> element that the caller wants to know whether to honor.
|
|
|
|
* Included to check the nonce attribute if one is provided. Allowed to
|
|
|
|
* be null, if this is for something other than a <style> element (in
|
|
|
|
* which case nonces won't be checked).
|
|
|
|
* @param aPrincipal
|
|
|
|
* The principal of the of the document (*not* of the style sheet).
|
|
|
|
* The document's principal is where any Content Security Policy that
|
|
|
|
* should be used to block or allow inline styles will be located.
|
|
|
|
* @param aSourceURI
|
|
|
|
* URI of document containing inline style (for reporting violations)
|
|
|
|
* @param aLineNumber
|
|
|
|
* Line number of inline style element in the containing document (for
|
|
|
|
* reporting violations)
|
|
|
|
* @param aStyleText
|
|
|
|
* Contents of the inline style element (for reporting violations)
|
|
|
|
* @param aRv
|
|
|
|
* Return error code in case of failure
|
|
|
|
* @return
|
|
|
|
* Does CSP allow application of the specified inline style?
|
2012-08-30 21:58:24 +04:00
|
|
|
*/
|
2013-11-09 03:44:39 +04:00
|
|
|
static bool CSPAllowsInlineStyle(nsIContent* aContent,
|
|
|
|
nsIPrincipal* aPrincipal,
|
2012-08-30 21:58:24 +04:00
|
|
|
nsIURI* aSourceURI,
|
|
|
|
uint32_t aLineNumber,
|
|
|
|
const nsSubstring& aStyleText,
|
|
|
|
nsresult* aRv);
|
|
|
|
|
2015-11-28 03:56:33 +03:00
|
|
|
template<size_t N>
|
|
|
|
static bool MatchesLanguagePrefix(const char16_t* aLang, size_t aLen,
|
|
|
|
const char16_t (&aPrefix)[N])
|
|
|
|
{
|
|
|
|
return !nsCRT::strncmp(aLang, aPrefix, N - 1) &&
|
|
|
|
(aLen == N - 1 || aLang[N - 1] == '-');
|
|
|
|
}
|
|
|
|
|
|
|
|
template<size_t N>
|
|
|
|
static bool MatchesLanguagePrefix(const nsIAtom* aLang,
|
|
|
|
const char16_t (&aPrefix)[N])
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aLang);
|
|
|
|
return MatchesLanguagePrefix(aLang->GetUTF16String(),
|
|
|
|
aLang->GetLength(), aPrefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<size_t N>
|
|
|
|
static bool MatchesLanguagePrefix(const nsAString& aLang,
|
|
|
|
const char16_t (&aPrefix)[N])
|
|
|
|
{
|
|
|
|
return MatchesLanguagePrefix(aLang.Data(), aLang.Length(), aPrefix);
|
|
|
|
}
|
2001-02-19 15:10:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* nsStyleUtil_h___ */
|