1 // Copyright 2018 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "third_party/blink/renderer/core/css/properties/longhands/variable.h"
6 
7 #include "third_party/blink/renderer/core/css/properties/css_property.h"
8 
9 namespace blink {
10 
IsStaticInstance(const CSSProperty & property)11 bool Variable::IsStaticInstance(const CSSProperty& property) {
12   return &property == &GetCSSPropertyVariable();
13 }
14 
15 }  // namespace blink
16