blob: 16bd61b77a7f984f359c5a1c67032fca4b914e81 [file] [log] [blame]
// Copyright 2016 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.
// https://drafts.css-houdini.org/css-typed-om/#the-stylepropertymap
[
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM
] interface StylePropertyMap : StylePropertyMapReadonly {
[RaisesException] void append(DOMString property, (CSSStyleValue or sequence<CSSStyleValue> or DOMString) value);
[RaisesException, ImplementedAs=remove] void delete(DOMString property);
[RaisesException] void set(DOMString property, (CSSStyleValue or sequence<CSSStyleValue> or DOMString) value);
};