зеркало из https://github.com/mozilla/gecko-dev.git
108 строки
2.4 KiB
C++
108 строки
2.4 KiB
C++
/* -*- 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/. */
|
|
|
|
#include "mozilla/ServoStyleSheet.h"
|
|
|
|
namespace mozilla {
|
|
|
|
ServoStyleSheet::ServoStyleSheet(CORSMode aCORSMode,
|
|
net::ReferrerPolicy aReferrerPolicy,
|
|
const dom::SRIMetadata& aIntegrity)
|
|
: StyleSheetInfo(aCORSMode, aReferrerPolicy, aIntegrity)
|
|
{
|
|
}
|
|
|
|
ServoStyleSheet::~ServoStyleSheet()
|
|
{
|
|
DropSheet();
|
|
}
|
|
|
|
bool
|
|
ServoStyleSheet::IsApplicable() const
|
|
{
|
|
return !mDisabled && mComplete;
|
|
}
|
|
|
|
void
|
|
ServoStyleSheet::SetComplete()
|
|
{
|
|
MOZ_ASSERT(!mComplete);
|
|
|
|
mComplete = true;
|
|
|
|
NS_ERROR("stylo: ServoStyleSheet::SetComplete should do the things "
|
|
"CSSStyleSheet::SetComplete does");
|
|
}
|
|
|
|
bool
|
|
ServoStyleSheet::HasRules() const
|
|
{
|
|
return Servo_StyleSheetHasRules(RawSheet());
|
|
}
|
|
|
|
nsIDocument*
|
|
ServoStyleSheet::GetOwningDocument() const
|
|
{
|
|
NS_ERROR("stylo: GetOwningDocument not implemented, returning null");
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
void
|
|
ServoStyleSheet::SetOwningDocument(nsIDocument* aDocument)
|
|
{
|
|
MOZ_CRASH("stylo: not implemented");
|
|
}
|
|
|
|
StyleSheetHandle
|
|
ServoStyleSheet::GetParentSheet() const
|
|
{
|
|
MOZ_CRASH("stylo: not implemented");
|
|
}
|
|
|
|
void
|
|
ServoStyleSheet::AppendStyleSheet(StyleSheetHandle aSheet)
|
|
{
|
|
MOZ_CRASH("stylo: not implemented");
|
|
}
|
|
|
|
void
|
|
ServoStyleSheet::ParseSheet(const nsAString& aInput,
|
|
nsIURI* aSheetURI,
|
|
nsIURI* aBaseURI,
|
|
nsIPrincipal* aSheetPrincipal,
|
|
uint32_t aLineNumber,
|
|
css::SheetParsingMode aParsingMode)
|
|
{
|
|
DropSheet();
|
|
|
|
NS_ConvertUTF16toUTF8 input(aInput);
|
|
mSheet = already_AddRefed<RawServoStyleSheet>(Servo_StylesheetFromUTF8Bytes(
|
|
reinterpret_cast<const uint8_t*>(input.get()), input.Length()));
|
|
}
|
|
|
|
void
|
|
ServoStyleSheet::DropSheet()
|
|
{
|
|
mSheet = nullptr;
|
|
}
|
|
|
|
size_t
|
|
ServoStyleSheet::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const
|
|
{
|
|
MOZ_CRASH("stylo: not implemented");
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
void
|
|
ServoStyleSheet::List(FILE* aOut, int32_t aIndex) const
|
|
{
|
|
MOZ_CRASH("stylo: not implemented");
|
|
}
|
|
#endif
|
|
|
|
} // namespace mozilla
|