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

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

typedef (DOMString or CSSKeywordValue) CSSKeywordish;

// CSSKeywordValue represents CSS Values that are specified as keywords, for
// example "initial".
// https://drafts.css-houdini.org/css-typed-om/#keywordvalue-objects
[
    Exposed=(Window,LayoutWorklet,PaintWorklet)
] interface CSSKeywordValue : CSSStyleValue {
    [RaisesException] constructor(CSSOMString keyword);
    [RaisesException=Setter] attribute CSSOMString value;
};