blob: 62004e56738637ad6db83e4c4770768eae596665 [file] [log] [blame]
// Copyright 2016 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.
// Represents a CSS var() reference in a CSS value.
// Spec: https://drafts.css-houdini.org/css-typed-om/#cssvariablereferencevalue
[
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM,
ImplementedAs=CSSStyleVariableReferenceValue
] interface CSSVariableReferenceValue {
attribute DOMString variable;
attribute CSSUnparsedValue? fallback;
};