9 lines
289 B
Text
9 lines
289 B
Text
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#csskeywordvalue
|
||
|
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
||
|
|
interface CSSKeywordValue : CSSStyleValue {
|
||
|
|
constructor(USVString value);
|
||
|
|
attribute USVString value;
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef (DOMString or CSSKeywordValue) CSSKeywordish;
|