summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/cssom/css_keyword_value.idl
blob: 31f6b51730de66853d1262a3446a394f957ac37e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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;
};