chromium/third_party/blink/renderer/core/css/cssom/css_variable_reference_value.idl

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Represents a CSS var() reference in a CSS value.
// Spec: https://drafts.css-houdini.org/css-typed-om/#cssvariablereferencevalue
[
    Exposed=(Window,LayoutWorklet,PaintWorklet),
    ImplementedAs=CSSStyleVariableReferenceValue
] interface CSSVariableReferenceValue {
    [RaisesException] constructor(CSSOMString variable, optional CSSUnparsedValue? fallback = null);
    [RaisesException=Setter] attribute CSSOMString variable;
    readonly attribute CSSUnparsedValue? fallback;
};