blob: 5d4a12235d38b1134e187d215aea7a70ef1a09c1 [file] [log] [blame]
// Copyright 2020 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/css/css_revert_value.h"
#include "third_party/blink/renderer/core/css/css_value_pool.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
namespace cssvalue {
CSSRevertValue* CSSRevertValue::Create() {
return CssValuePool().RevertValue();
}
String CSSRevertValue::CustomCSSText() const {
return "revert";
}
} // namespace cssvalue
} // namespace blink