blob: 31f6b51730de66853d1262a3446a394f957ac37e [file] [log] [blame]
// Copyright 2015 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.
// CSSKeywordValue represents CSS Values that are specified as keywords, for
// example "initial".
// https://drafts.css-houdini.org/css-typed-om/#keywordvalue-objects
[
Constructor(CSSOMString keyword),
Exposed=(Window,LayoutWorklet,PaintWorklet),
RaisesException=Constructor
] interface CSSKeywordValue : CSSStyleValue {
[RaisesException=Setter] attribute CSSOMString value;
};