servo/components/script_bindings/webidls/CSS.webidl
Simon Wülker 43da933247
script: Implement CSS.registerProperty (#38682)
The implementation is mostly equivalent to
https://searchfox.org/mozilla-central/source/servo/ports/geckolib/glue.rs#9480.

Testing: New web platform tests start to pass

---------

Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
2025-08-14 13:34:02 +00:00

36 lines
1.2 KiB
Text

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/*
* The origin of this IDL file is
* https://drafts.csswg.org/cssom/#namespacedef-css
*/
// https://drafts.csswg.org/cssom/#the-css.escape()-method
[Exposed=Window]
namespace CSS {
[Throws] CSSOMString escape(CSSOMString ident);
};
// https://drafts.csswg.org/css-conditional-3/#dom-css-supports
partial namespace CSS {
boolean supports(CSSOMString property, CSSOMString value);
boolean supports(CSSOMString conditionText);
};
// https://drafts.css-houdini.org/css-paint-api/#dom-css-paintworklet
partial namespace CSS {
[SameObject, Pref="dom_worklet_enabled"] readonly attribute Worklet paintWorklet;
};
// https://drafts.css-houdini.org/css-properties-values-api/#the-registerproperty-function
dictionary PropertyDefinition {
required DOMString name;
DOMString syntax = "*";
required boolean inherits;
DOMString initialValue;
};
partial namespace CSS {
[Throws] undefined registerProperty(PropertyDefinition definition);
};