blob: 92ba10e1515002a590e734159a2a0464ae147404 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/feature_policy/layout_animations_policy.h"
#include "third_party/blink/public/common/feature_policy/document_policy_features.h"
#include "third_party/blink/public/mojom/feature_policy/document_policy_feature.mojom-blink.h"
#include "third_party/blink/renderer/core/css/properties/css_property.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/platform/wtf/std_lib_extras.h"
namespace blink {
namespace {
String GetViolationMessage(const CSSProperty& property) {
return String::Format(
"Document policy violation: CSS property '%s' violates document policy "
"'%s' which is disabled in this document",
property.GetPropertyNameString().Utf8().c_str(),
GetDocumentPolicyFeatureInfoMap()
.at(mojom::blink::DocumentPolicyFeature::kLayoutAnimations)
.feature_name.c_str());
}
} // namespace
LayoutAnimationsPolicy::LayoutAnimationsPolicy() = default;
// static
const HashSet<const CSSProperty*>&
LayoutAnimationsPolicy::AffectedCSSProperties() {
DEFINE_STATIC_LOCAL(
HashSet<const CSSProperty*>, properties,
({&GetCSSPropertyBottom(), &GetCSSPropertyHeight(), &GetCSSPropertyLeft(),
&GetCSSPropertyRight(), &GetCSSPropertyTop(), &GetCSSPropertyWidth()}));
return properties;
}
// static
void LayoutAnimationsPolicy::ReportViolation(
const CSSProperty& animated_property,
const ExecutionContext& context) {
DCHECK(AffectedCSSProperties().Contains(&animated_property));
context.IsFeatureEnabled(
mojom::blink::DocumentPolicyFeature::kLayoutAnimations,
ReportOptions::kReportOnFailure, GetViolationMessage(animated_property));
}
} // namespace blink