blob: 5bfc2e2fa1273951f6452d14597ee1f6236be0ab [file] [log] [blame] [edit]
// Copyright 2017 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.
[
Exposed(Window CSSTypedOM, PaintWorklet CSSPaintAPI)
] interface StylePropertyMapReadonly {
[RaisesException] CSSStyleValue? get(DOMString property);
[RaisesException] sequence<CSSStyleValue> getAll(DOMString property);
[RaisesException] boolean has(DOMString property);
iterable<DOMString, (CSSStyleValue or sequence<CSSStyleValue>)>;
sequence<DOMString> getProperties();
};