2017-10-16 03:54:47 +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/. */
|
|
|
|
|
|
|
|
/* CSS parsing utility functions */
|
|
|
|
|
|
|
|
#include "ServoCSSParser.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
|
|
|
|
/* static */ bool
|
|
|
|
ServoCSSParser::IsValidCSSColor(const nsAString& aValue)
|
|
|
|
{
|
|
|
|
return Servo_IsValidCSSColor(&aValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ bool
|
|
|
|
ServoCSSParser::ComputeColor(ServoStyleSet* aStyleSet,
|
|
|
|
nscolor aCurrentColor,
|
|
|
|
const nsAString& aValue,
|
2017-11-30 12:27:18 +03:00
|
|
|
nscolor* aResultColor,
|
|
|
|
bool* aWasCurrentColor)
|
2017-10-16 03:54:47 +03:00
|
|
|
{
|
|
|
|
return Servo_ComputeColor(aStyleSet ? aStyleSet->RawSet() : nullptr,
|
2017-11-30 12:27:18 +03:00
|
|
|
aCurrentColor, &aValue, aResultColor,
|
|
|
|
aWasCurrentColor);
|
2017-10-16 03:54:47 +03:00
|
|
|
}
|
2017-10-16 13:02:16 +03:00
|
|
|
|
|
|
|
/* static */ bool
|
|
|
|
ServoCSSParser::ParseIntersectionObserverRootMargin(const nsAString& aValue,
|
|
|
|
nsCSSRect* aResult)
|
|
|
|
{
|
|
|
|
return Servo_ParseIntersectionObserverRootMargin(&aValue, aResult);
|
|
|
|
}
|
2017-11-24 10:52:26 +03:00
|
|
|
|
|
|
|
/* static */ already_AddRefed<nsAtom>
|
|
|
|
ServoCSSParser::ParseCounterStyleName(const nsAString& aValue)
|
|
|
|
{
|
|
|
|
NS_ConvertUTF16toUTF8 value(aValue);
|
|
|
|
nsAtom* atom = Servo_ParseCounterStyleName(&value);
|
|
|
|
return already_AddRefed<nsAtom>(atom);
|
|
|
|
}
|
2017-11-24 12:26:41 +03:00
|
|
|
|
|
|
|
/* static */ bool
|
|
|
|
ServoCSSParser::ParseCounterStyleDescriptor(nsCSSCounterDesc aDescriptor,
|
|
|
|
const nsAString& aValue,
|
|
|
|
URLExtraData* aURLExtraData,
|
|
|
|
nsCSSValue& aResult)
|
|
|
|
{
|
|
|
|
NS_ConvertUTF16toUTF8 value(aValue);
|
|
|
|
return Servo_ParseCounterStyleDescriptor(aDescriptor, &value, aURLExtraData,
|
|
|
|
&aResult);
|
|
|
|
}
|